diff options
author | Shawn O. Pearce <sop@google.com> | 2009-04-18 11:44:00 -0700 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2009-04-18 11:44:00 -0700 |
commit | 5da554f294a062c5c469d0a60b6f2ce6a0b3f669 (patch) | |
tree | 7bd4469054cf5d19f25b68200845015e483e62f8 /subcmds/help.py | |
parent | 77bb4af241ddfeacfe463272d681f188f92f98b0 (diff) | |
download | git-repo-5da554f294a062c5c469d0a60b6f2ce6a0b3f669.tar.gz |
Show options help after the summary for a command
It is a bit clearer to read this way.
Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'subcmds/help.py')
-rw-r--r-- | subcmds/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/help.py b/subcmds/help.py index a1425e74..fafceadb 100644 --- a/subcmds/help.py +++ b/subcmds/help.py | |||
@@ -128,8 +128,8 @@ See 'repo help --all' for a complete list of recognized commands. | |||
128 | self.wrap.end_paragraph(0) | 128 | self.wrap.end_paragraph(0) |
129 | 129 | ||
130 | out = _Out(self.manifest.globalConfig) | 130 | out = _Out(self.manifest.globalConfig) |
131 | cmd.OptionParser.print_help() | ||
132 | out._PrintSection('Summary', 'helpSummary') | 131 | out._PrintSection('Summary', 'helpSummary') |
132 | cmd.OptionParser.print_help() | ||
133 | out._PrintSection('Description', 'helpDescription') | 133 | out._PrintSection('Description', 'helpDescription') |
134 | 134 | ||
135 | def _Options(self, p): | 135 | def _Options(self, p): |