1
0
mirror of https://gitlab.com/openlp/packaging.git synced 2024-12-25 11:14:08 +00:00

metavar is not needed with a flag

This commit is contained in:
Raoul Snyman 2016-12-07 23:49:54 +02:00
parent 1d27ba766d
commit 47ad69b9ae

View File

@ -268,7 +268,7 @@ class WindowsBuilder(Builder):
""" """
Add extra arguments to the command line argument parser Add extra arguments to the command line argument parser
""" """
parser.add_argument('--portable', metavar='PATH', action='store_true', default=False, parser.add_argument('--portable', action='store_true', default=False,
help='Specify the path to build the portable installation.') help='Specify the path to build the portable installation.')
def setup_system_paths(self): def setup_system_paths(self):