[CalendarServer-changes] [13719] CalendarServer/trunk/calendarserver/tools/dbinspect.py

source_changes at macosforge.org source_changes at macosforge.org
Thu Jul 3 14:20:14 PDT 2014


Revision: 13719
          http://trac.calendarserver.org//changeset/13719
Author:   cdaboo at apple.com
Date:     2014-07-03 14:20:14 -0700 (Thu, 03 Jul 2014)
Log Message:
-----------
Missed one yield fix.

Modified Paths:
--------------
    CalendarServer/trunk/calendarserver/tools/dbinspect.py

Modified: CalendarServer/trunk/calendarserver/tools/dbinspect.py
===================================================================
--- CalendarServer/trunk/calendarserver/tools/dbinspect.py	2014-07-03 18:26:34 UTC (rev 13718)
+++ CalendarServer/trunk/calendarserver/tools/dbinspect.py	2014-07-03 21:20:14 UTC (rev 13719)
@@ -105,7 +105,7 @@
 @inlineCallbacks
 def UIDFromInput(txn, value):
     try:
-        return str(UUID(value)).upper()
+        returnValue(str(UUID(value)).upper())
     except (ValueError, TypeError):
         pass
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20140703/d5b0f545/attachment.html>


More information about the calendarserver-changes mailing list