Add emty line to the end of help strings
This commit is contained in:
parent
8e231c1d4f
commit
6b35ad79e5
|
@ -152,7 +152,7 @@ def parseOpts():
|
|||
'\n -c, --config-path ' + \
|
||||
_('Set configuration directory') + \
|
||||
'\n -l, --loglevel ' + \
|
||||
_('Configure logging system'))
|
||||
_('Configure logging system') + '\n')
|
||||
sys.exit()
|
||||
elif o in ('-q', '--quiet'):
|
||||
logging_helpers.set_quiet()
|
||||
|
|
|
@ -76,13 +76,13 @@ def parseOpts():
|
|||
_('Options:') + \
|
||||
'\n -h, --help ' + \
|
||||
_('Show this help message and exit') + \
|
||||
'\n -c, --config-path ' + _('Set logs directory'))
|
||||
'\n -c, --config-path ' + _('Set logs directory') + '\n')
|
||||
sys.exit()
|
||||
elif o in ('-c', '--config-path'):
|
||||
config_path = a
|
||||
return config_path
|
||||
|
||||
config_path = parseOpts()
|
||||
onfig_path = parseOpts()
|
||||
del parseOpts
|
||||
|
||||
import common.configpaths
|
||||
|
|
Loading…
Reference in New Issue