[CalendarServer-changes] [8076] CalendarServer/branches/users/glyph/other-html/twistedcaldav/ directory/principal.py

source_changes at macosforge.org source_changes at macosforge.org
Tue Sep 13 12:10:11 PDT 2011


Revision: 8076
          http://trac.macosforge.org/projects/calendarserver/changeset/8076
Author:   glyph at apple.com
Date:     2011-09-13 12:10:11 -0700 (Tue, 13 Sep 2011)
Log Message:
-----------
wrapping, pyflakes

Modified Paths:
--------------
    CalendarServer/branches/users/glyph/other-html/twistedcaldav/directory/principal.py

Modified: CalendarServer/branches/users/glyph/other-html/twistedcaldav/directory/principal.py
===================================================================
--- CalendarServer/branches/users/glyph/other-html/twistedcaldav/directory/principal.py	2011-09-13 19:10:02 UTC (rev 8075)
+++ CalendarServer/branches/users/glyph/other-html/twistedcaldav/directory/principal.py	2011-09-13 19:10:11 UTC (rev 8076)
@@ -50,17 +50,22 @@
 
 try:
     from twistedcaldav.authkerb import NegotiateCredentials
+    NegotiateCredentials # sigh, pyflakes
 except ImportError:
     NegotiateCredentials = None
 from twistedcaldav.config import config
 from twistedcaldav.cache import DisabledCacheNotifier, PropfindCacheMixin
 from twistedcaldav.directory import calendaruserproxy
-from twistedcaldav.directory.calendaruserproxy import CalendarUserProxyPrincipalResource
+from twistedcaldav.directory.calendaruserproxy import (
+    CalendarUserProxyPrincipalResource
+)
 from twistedcaldav.directory.common import uidsResourceName
 from twistedcaldav.directory.directory import DirectoryService, DirectoryRecord
 from twistedcaldav.extensions import ReadOnlyResourceMixIn, DAVPrincipalResource,\
     DAVResourceWithChildrenMixin
-from twistedcaldav.resource import CalendarPrincipalCollectionResource, CalendarPrincipalResource
+from twistedcaldav.resource import (
+    CalendarPrincipalCollectionResource, CalendarPrincipalResource
+)
 from twistedcaldav.directory.idirectory import IDirectoryService
 from twistedcaldav import caldavxml, customxml
 from twistedcaldav.customxml import calendarserver_namespace
@@ -487,7 +492,8 @@
     def principalCollections(self):
         return self.parent.principalCollections()
 
-class DirectoryPrincipalResource (PropfindCacheMixin, PermissionsMixIn, DAVPrincipalResource):
+class DirectoryPrincipalResource (
+        PropfindCacheMixin, PermissionsMixIn, DAVPrincipalResource):
     """
     Directory principal resource.
     """
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20110913/dae64f45/attachment.html>


More information about the calendarserver-changes mailing list