summaryrefslogtreecommitdiffstats
path: root/subcmds/smartsync.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/smartsync.py')
-rw-r--r--subcmds/smartsync.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/subcmds/smartsync.py b/subcmds/smartsync.py
index d91d59c6..49d09972 100644
--- a/subcmds/smartsync.py
+++ b/subcmds/smartsync.py
@@ -16,18 +16,18 @@ from subcmds.sync import Sync
16 16
17 17
18class Smartsync(Sync): 18class Smartsync(Sync):
19 COMMON = True 19 COMMON = True
20 helpSummary = "Update working tree to the latest known good revision" 20 helpSummary = "Update working tree to the latest known good revision"
21 helpUsage = """ 21 helpUsage = """
22%prog [<project>...] 22%prog [<project>...]
23""" 23"""
24 helpDescription = """ 24 helpDescription = """
25The '%prog' command is a shortcut for sync -s. 25The '%prog' command is a shortcut for sync -s.
26""" 26"""
27 27
28 def _Options(self, p): 28 def _Options(self, p):
29 Sync._Options(self, p, show_smart=False) 29 Sync._Options(self, p, show_smart=False)
30 30
31 def Execute(self, opt, args): 31 def Execute(self, opt, args):
32 opt.smart_sync = True 32 opt.smart_sync = True
33 Sync.Execute(self, opt, args) 33 Sync.Execute(self, opt, args)