Craig Phillips
Craig Phillips
Here is a patch that fixes this issue. ``` diff --git a/docopt.py b/docopt.py index 7c6a52d..2a36b12 100644 --- a/docopt.py +++ b/docopt.py @@ -578,4 +578,8 @@ def docopt(doc, argv=None, help=True, version=None, options_first=False):...
Also, did you install gsync from pypi? https://pypi.python.org/pypi/gsync
gsync master repository is now pretty stable again, so you can build and install from that to see if the issue has been fixed.
I am 1/4 of the way through implementing --filter. Once that's done, this will be next. Thanks for supporting gsync!
I have implemented a similar change, but one that will work with non-unicode objects. Can you give it a try?
Duplicate of #46
Looks fairly straight forward to implement. Exclusions are ordered lists, so I can load the lists during initialisation. Something would need to be added to the walker to handle the...
I have submitted a pull request for a change I have made to docopt in order to be able to handle options being specified multiple times on the command line....
I have modified the usage to add `[options]...` in place of `[options]`. This flags all options as repeatable. I need to update the `GsyncOptions` class to ensure that attributes containing...
Have implemented initial filter module with filter parsing functions. Still no implementation of filter processing yet.