diff options
Diffstat (limited to 'subcmds/diff.py')
-rw-r--r-- | subcmds/diff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/diff.py b/subcmds/diff.py index 4966bb1a..00a7ec29 100644 --- a/subcmds/diff.py +++ b/subcmds/diff.py | |||
@@ -19,7 +19,7 @@ from command import DEFAULT_LOCAL_JOBS, PagedCommand | |||
19 | 19 | ||
20 | 20 | ||
21 | class Diff(PagedCommand): | 21 | class Diff(PagedCommand): |
22 | common = True | 22 | COMMON = True |
23 | helpSummary = "Show changes between commit and working tree" | 23 | helpSummary = "Show changes between commit and working tree" |
24 | helpUsage = """ | 24 | helpUsage = """ |
25 | %prog [<project>...] | 25 | %prog [<project>...] |
@@ -33,7 +33,7 @@ to the Unix 'patch' command. | |||
33 | def _Options(self, p): | 33 | def _Options(self, p): |
34 | p.add_option('-u', '--absolute', | 34 | p.add_option('-u', '--absolute', |
35 | dest='absolute', action='store_true', | 35 | dest='absolute', action='store_true', |
36 | help='Paths are relative to the repository root') | 36 | help='paths are relative to the repository root') |
37 | 37 | ||
38 | def _ExecuteOne(self, absolute, project): | 38 | def _ExecuteOne(self, absolute, project): |
39 | """Obtains the diff for a specific project. | 39 | """Obtains the diff for a specific project. |