From a6ecfbd11515400ea3647300f78ed23458aec9b1 Mon Sep 17 00:00:00 2001 From: David Steele Date: Mon, 23 Jan 2017 13:46:33 -0500 Subject: [PATCH] Fix bug in configargparse - sitename The long form of the 'sitename' option is missing, causing the option to be unavailable from the configuration file. --- cloudprint/cloudprint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudprint/cloudprint.py b/cloudprint/cloudprint.py index b3a311a..9e153f3 100755 --- a/cloudprint/cloudprint.py +++ b/cloudprint/cloudprint.py @@ -534,7 +534,7 @@ def parse_args(): help='syslog address to use in daemon mode', ) parser.add_argument( - '-s', + '-s', '--sitename', metavar='sitename', dest='site', default='',