aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2019-07-14 12:14:39 +0200
committerFabian Groffen <grobian@gentoo.org>2019-07-14 12:14:39 +0200
commitee8c746db135320fe41c1dc830bda1617216b916 (patch)
treec5cfa71b5fc841efa6ff6cf06b034f996f267cbc /man
parentapplets: reword -v help description into what it really is (diff)
downloadportage-utils-ee8c746db135320fe41c1dc830bda1617216b916.tar.gz
portage-utils-ee8c746db135320fe41c1dc830bda1617216b916.tar.bz2
portage-utils-ee8c746db135320fe41c1dc830bda1617216b916.zip
main: nicely format/wrap help arguments in -h output
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'man')
-rwxr-xr-xman/mkman.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/mkman.py b/man/mkman.py
index a1b68a77..13cd1c95 100755
--- a/man/mkman.py
+++ b/man/mkman.py
@@ -69,7 +69,7 @@ def MkMan(applets, applet, output):
except:
return
lines = ahelp.splitlines()
- m = re.search(r'^Usage: %s (.*) : (.*)' % applet, ahelp)
+ m = re.search(r'^usage: %s (.*) : (.*)' % applet, ahelp)
usage = m.group(1)
short_desc = m.group(2)
@@ -92,7 +92,7 @@ def MkMan(applets, applet, output):
# Extract all the options
options = []
for line, i in zip(lines, range(len(lines))):
- if not line.startswith('Options: '):
+ if not line.startswith('options: '):
continue
for option in [x.strip().split() for x in lines[i + 1:]]:
@@ -128,8 +128,8 @@ def MkMan(applets, applet, output):
# Handle applets that have applets
extra_sections = []
- if 'Currently defined applets:' in ahelp:
- alines = lines[lines.index('Currently defined applets:') + 1:]
+ if 'currently defined applets:' in ahelp:
+ alines = lines[lines.index('currently defined applets:') + 1:]
alines = alines[:alines.index('')]
extra_sections += (
['.SH APPLETS', '.nf',