selectors.py
branchtls-sprint
changeset 759 e044f28372bd
parent 752 c0506c4a1e6c
child 764 9de67b681624
--- a/selectors.py	Wed Feb 18 10:03:58 2009 +0100
+++ b/selectors.py	Wed Feb 18 10:05:15 2009 +0100
@@ -347,7 +347,7 @@
 @lltrace
 def authenticated_user(cls, req, *args, **kwargs):
     """accept if user is authenticated"""
-    return not anonymous_user(cls, req, *args, **kwargs)
+    return not anonymous_user()(cls, req, *args, **kwargs)
 
 @objectify_selector
 @lltrace