[CalendarServer-changes] [5479] CalendarServer/trunk/calendarserver/tap/caldav.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Apr 14 11:00:48 PDT 2010


Revision: 5479
          http://trac.macosforge.org/projects/calendarserver/changeset/5479
Author:   glyph at apple.com
Date:     2010-04-14 11:00:45 -0700 (Wed, 14 Apr 2010)
Log Message:
-----------
My annual letters budget wasn't as overdrawn as I thought: use a meaningful variable name.

Modified Paths:
--------------
    CalendarServer/trunk/calendarserver/tap/caldav.py

Modified: CalendarServer/trunk/calendarserver/tap/caldav.py
===================================================================
--- CalendarServer/trunk/calendarserver/tap/caldav.py	2010-04-14 17:36:09 UTC (rev 5478)
+++ CalendarServer/trunk/calendarserver/tap/caldav.py	2010-04-14 18:00:45 UTC (rev 5479)
@@ -643,16 +643,16 @@
             fd = int(config.MetaFD)
 
             try:
-                ctxFac = self.createContextFactory()
+                contextFactory = self.createContextFactory()
             except SSLError, e:
                 self.log_error("Unable to set up SSL context factory: %s" % (e,))
                 # None is okay as a context factory for ReportingHTTPService as
                 # long as we will never receive a file descriptor with the
                 # 'SSL' tag on it, since that's the only time it's used.
-                ctxFac = None
+                contextFactory = None
 
             ReportingHTTPService(
-                site, fd, ctxFac
+                site, fd, contextFactory
             ).setServiceParent(service)
 
         else: # Not inheriting, therefore we open our own:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100414/0a3b2998/attachment-0001.html>


More information about the calendarserver-changes mailing list