[Zope-Checkins] SVN: Products.Five/trunk/site/localsite.py Fixed collector issue 2198.

Stephan Richter srichter at cosmos.phy.tufts.edu
Mon Oct 30 13:08:33 EST 2006


Log message for revision 70998:
  Fixed collector issue 2198.
  

Changed:
  U   Products.Five/trunk/site/localsite.py

-=-
Modified: Products.Five/trunk/site/localsite.py
===================================================================
--- Products.Five/trunk/site/localsite.py	2006-10-30 17:08:40 UTC (rev 70997)
+++ Products.Five/trunk/site/localsite.py	2006-10-30 18:08:32 UTC (rev 70998)
@@ -51,7 +51,7 @@
     def __bases__(self):
         next = self.next
         if next is None:
-            return ()
+            return (getGlobalSiteManager(),)
         return (next,)
 
     @property



More information about the Zope-Checkins mailing list