You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow the use of quoted arguments, e.g.
```
Usage:
test <arg1> <arg2>
```
with the input `a "b c d"`
If tokenization fails, fall back to the original behaviour
It seems the argv form is passed directly to docopt as a string with no tokenizing, breaking double quoted arguments. An example here.
Maybe wrap this in
shlex.split
or something similar?The text was updated successfully, but these errors were encountered: