[CalendarServer-dev] error in CalDAVClientLibrary

Atli Thorbjornsson atlithorn at gmail.com
Sat Mar 1 06:39:59 PST 2014


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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-dev/attachments/20140301/abc91723/attachment.html>
-------------- next part --------------
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":


More information about the calendarserver-dev mailing list