I'm not quite sure how to issue pull requests (not much of a svn user).

I found a bug in browser/commands/query.py where there was no way to
actually set end date via -e.

Please find attached svn diff output. Only too happy to submit via other
means if need be.

Atli.
Index: caldavclientlibrary/browser/commands/query.py
===================================================================
--- caldavclientlibrary/browser/commands/query.py       (revision 12777)
+++ caldavclientlibrary/browser/commands/query.py       (working copy)
@@ -49,7 +49,7 @@
             elif name == "-s":
                 start = value
             elif name == "-e":
-                start = value
+                end = value
             elif name == "-x":
                 expand = True
             elif name == "-d":
_______________________________________________
calendarserver-dev mailing list
calendarserver-dev@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/calendarserver-dev

Reply via email to