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
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ class WindowsBuilder(Builder):
"""
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.')
def setup_system_paths(self):