Skip to content

Commit

Permalink
Fix bug in configargparse - sitename
Browse files Browse the repository at this point in the history
The long form of the 'sitename' option is missing, causing the option to be unavailable from the configuration file.
  • Loading branch information
davesteele authored and armooo committed Jan 23, 2017
1 parent 326ce76 commit a6ecfbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudprint/cloudprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='',
Expand Down

0 comments on commit a6ecfbd

Please sign in to comment.