Removing command line spacer, so that "-P -5" becomes "-P-5", to work around command line parser bug.

This commit is contained in:
Marat Fayzullin 2022-08-11 16:21:40 -04:00
parent 5cd0847362
commit b89a55adae

View File

@ -57,7 +57,7 @@ class Flag(CommandMapping):
class Option(CommandMapping): class Option(CommandMapping):
def __init__(self, option): def __init__(self, option):
self.option = option self.option = option
self.spacer = " " self.spacer = ""
def map(self, value): def map(self, value):
if value is not None: if value is not None: