diff options
-rw-r--r-- | subcmds/info.py | 2 | ||||
-rw-r--r-- | subcmds/list.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/info.py b/subcmds/info.py index c10e56cd..d42860ae 100644 --- a/subcmds/info.py +++ b/subcmds/info.py | |||
@@ -27,7 +27,7 @@ class Info(PagedCommand): | |||
27 | helpSummary = "Get info on the manifest branch, current branch or unmerged branches" | 27 | helpSummary = "Get info on the manifest branch, current branch or unmerged branches" |
28 | helpUsage = "%prog [-dl] [-o [-b]] [<project>...]" | 28 | helpUsage = "%prog [-dl] [-o [-b]] [<project>...]" |
29 | 29 | ||
30 | def _Options(self, p, show_smart=True): | 30 | def _Options(self, p): |
31 | p.add_option('-d', '--diff', | 31 | p.add_option('-d', '--diff', |
32 | dest='all', action='store_true', | 32 | dest='all', action='store_true', |
33 | help="show full info and commit diff including remote branches") | 33 | help="show full info and commit diff including remote branches") |
diff --git a/subcmds/list.py b/subcmds/list.py index a3358245..945c28d8 100644 --- a/subcmds/list.py +++ b/subcmds/list.py | |||
@@ -31,7 +31,7 @@ List all projects; pass '.' to list the project for the cwd. | |||
31 | This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'. | 31 | This is similar to running: repo forall -c 'echo "$REPO_PATH : $REPO_PROJECT"'. |
32 | """ | 32 | """ |
33 | 33 | ||
34 | def _Options(self, p, show_smart=True): | 34 | def _Options(self, p): |
35 | p.add_option('-r', '--regex', | 35 | p.add_option('-r', '--regex', |
36 | dest='regex', action='store_true', | 36 | dest='regex', action='store_true', |
37 | help="Filter the project list based on regex or wildcard matching of strings") | 37 | help="Filter the project list based on regex or wildcard matching of strings") |