docopt.coffee icon indicating copy to clipboard operation
docopt.coffee copied to clipboard

Fix for multiple argument values

Open mdevils opened this issue 11 years ago • 0 comments

Currently syntax --opt=val1 --opt=val2 generates {'--opt': 'val2'} result. According to python version, it should generate {'--opt': ['val1', 'val2']}.

mdevils avatar Aug 22 '14 17:08 mdevils