Commit f22b5a0e authored by Jean-Paul Smets's avatar Jean-Paul Smets

Fix spacing. Replace if not m by if m is not None.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@17605 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4feee813
......@@ -227,15 +227,15 @@ class ERP5TypeInformation( FactoryTypeInformation,
m = getattr(p, self.factory, None)
if m:
if m is not None:
try:
# validate() can either raise Unauthorized or return 0 to
# mean unauthorized.
permission = self.permission
if permission and _checkPermission( permission, container ):
return m
if permission and _checkPermission(permission, container):
return m
elif getSecurityManager().validate(p, p, self.factory, m):
return m
return m
except zExceptions_Unauthorized: # Catch *all* Unauths!
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment