[CalendarServer-changes] [5461] CalendarServer/trunk/twext/python/datetime.py

source_changes at macosforge.org source_changes at macosforge.org
Fri Apr 9 12:59:58 PDT 2010


Revision: 5461
          http://trac.macosforge.org/projects/calendarserver/changeset/5461
Author:   cdaboo at apple.com
Date:     2010-04-09 12:59:57 -0700 (Fri, 09 Apr 2010)
Log Message:
-----------
Missing return.

Modified Paths:
--------------
    CalendarServer/trunk/twext/python/datetime.py

Modified: CalendarServer/trunk/twext/python/datetime.py
===================================================================
--- CalendarServer/trunk/twext/python/datetime.py	2010-04-09 19:21:07 UTC (rev 5460)
+++ CalendarServer/trunk/twext/python/datetime.py	2010-04-09 19:59:57 UTC (rev 5461)
@@ -263,7 +263,7 @@
             elif self.end() is not None:
                 return other.start() < self.end()
             elif other.end() is not None:
-                self.start() >= other.start() and self.start() < other.end()
+                return self.start() >= other.start() and self.start() < other.end()
             else:
                 return False
         elif self.start() is not None:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100409/e7590b7f/attachment.html>


More information about the calendarserver-changes mailing list