[Zope-Checkins]
SVN: Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py
There was a 'not' too much. Thanks Hanno.
Philipp von Weitershausen
philikon at philikon.de
Fri Jul 27 20:25:59 EDT 2007
Log message for revision 78405:
There was a 'not' too much. Thanks Hanno.
Changed:
U Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py
-=-
Modified: Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py
===================================================================
--- Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py 2007-07-28 00:13:09 UTC (rev 78404)
+++ Zope/branches/philikon-aq/lib/python/AccessControl/Owned.py 2007-07-28 00:25:57 UTC (rev 78405)
@@ -241,7 +241,7 @@
else: _owner=None
if (_owner is None and
- ((not getattr(self, '__parent__', None) is None) or
+ ((getattr(self, '__parent__', None) is None) or
(not hasattr(self, 'getPhysicalRoot'))
)
):
More information about the Zope-Checkins
mailing list