summaryrefslogtreecommitdiffstats
path: root/subcmds/forall.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/forall.py')
-rw-r--r--subcmds/forall.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py
index f0ce97cb..4a631fb7 100644
--- a/subcmds/forall.py
+++ b/subcmds/forall.py
@@ -129,8 +129,6 @@ without iterating through the remaining projects.
129 del parser.rargs[0] 129 del parser.rargs[0]
130 130
131 def _Options(self, p): 131 def _Options(self, p):
132 super()._Options(p)
133
134 p.add_option('-r', '--regex', 132 p.add_option('-r', '--regex',
135 dest='regex', action='store_true', 133 dest='regex', action='store_true',
136 help="Execute the command only on projects matching regex or wildcard expression") 134 help="Execute the command only on projects matching regex or wildcard expression")
@@ -153,13 +151,10 @@ without iterating through the remaining projects.
153 help='Silently skip & do not exit non-zero due missing ' 151 help='Silently skip & do not exit non-zero due missing '
154 'checkouts') 152 'checkouts')
155 153
156 g = p.add_option_group('Output') 154 g = p.get_option_group('--quiet')
157 g.add_option('-p', 155 g.add_option('-p',
158 dest='project_header', action='store_true', 156 dest='project_header', action='store_true',
159 help='Show project headers before output') 157 help='Show project headers before output')
160 g.add_option('-v', '--verbose',
161 dest='verbose', action='store_true',
162 help='Show command error messages')
163 p.add_option('--interactive', 158 p.add_option('--interactive',
164 action='store_true', 159 action='store_true',
165 help='force interactive usage') 160 help='force interactive usage')