Commit 705642b6 authored by Chris Withers's avatar Chris Withers

Fix missing import :-S

parent a21f9ade
...@@ -280,9 +280,10 @@ class TransactionsManager: ...@@ -280,9 +280,10 @@ class TransactionsManager:
except AttributeError: except AttributeError:
# Most likely some product forgot to call __of__() # Most likely some product forgot to call __of__()
# on the user object. # on the user object.
LOG('AccessControl', WARNING, ac_logger.warning(
'A user object of type %s has no aq_parent.' 'A user object of type %s has no aq_parent.',
% str(type(auth_user))) type(auth_user)
)
auth_path = request_get('AUTHENTICATION_PATH') auth_path = request_get('AUTHENTICATION_PATH')
else: else:
auth_path = '/'.join(auth_folder.getPhysicalPath()[1:-1]) auth_path = '/'.join(auth_folder.getPhysicalPath()[1:-1])
......
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