diff options
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index 8050e515..fff1281a 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -19,11 +19,11 @@ import subprocess | |||
19 | import sys | 19 | import sys |
20 | 20 | ||
21 | from git_command import GIT | 21 | from git_command import GIT |
22 | from command import Command | 22 | from command import Command, MirrorSafeCommand |
23 | from error import RepoChangedException, GitError | 23 | from error import RepoChangedException, GitError |
24 | from project import R_HEADS | 24 | from project import R_HEADS |
25 | 25 | ||
26 | class Sync(Command): | 26 | class Sync(Command, MirrorSafeCommand): |
27 | common = True | 27 | common = True |
28 | helpSummary = "Update working tree to the latest revision" | 28 | helpSummary = "Update working tree to the latest revision" |
29 | helpUsage = """ | 29 | helpUsage = """ |