help2rst.py: Update number of indentation
This commit is contained in:
parent
5f36d91afd
commit
49eeed8420
|
@ -8,7 +8,7 @@ import sys
|
||||||
import re
|
import re
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
arg_indent = ' ' * 21
|
arg_indent = ' ' * 14
|
||||||
|
|
||||||
def help2man(infile):
|
def help2man(infile):
|
||||||
# We assume that first line is usage line like this:
|
# We assume that first line is usage line like this:
|
||||||
|
@ -87,7 +87,7 @@ DESCRIPTION
|
||||||
continue
|
continue
|
||||||
if line.startswith(' ') and in_arg:
|
if line.startswith(' ') and in_arg:
|
||||||
if not line.startswith(arg_indent):
|
if not line.startswith(arg_indent):
|
||||||
sys.stderr.write('warning: argument description is not indented correctly. We need {} spaces as indentation.'.format(len(arg_indent)))
|
sys.stderr.write('warning: argument description is not indented correctly. We need {} spaces as indentation.\n'.format(len(arg_indent)))
|
||||||
print '{}'.format(format_arg_text(line[len(arg_indent):]))
|
print '{}'.format(format_arg_text(line[len(arg_indent):]))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue