Add periods for argparse help texts.

This commit is contained in:
Florian Bruhin 2015-02-05 08:29:13 +01:00
parent a55076dfdf
commit 514ae1e798

View File

@ -46,11 +46,11 @@ def get_argparser():
parser = argparse.ArgumentParser("usage: qutebrowser",
description=qutebrowser.__description__)
parser.add_argument('-c', '--confdir', help="Set config directory (empty "
"for no config storage)")
"for no config storage).")
parser.add_argument('-V', '--version', help="Show version and quit.",
action='store_true')
parser.add_argument('-s', '--set', help="Set a temporary setting for "
"this session", nargs=3, action='append',
"this session.", nargs=3, action='append',
dest='temp_settings', default=[],
metavar=('SECTION', 'OPTION', 'VALUE'))