summaryrefslogtreecommitdiff
path: root/coip/apps/userprofile
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2010-12-11 00:53:50 +0100
committerLeif Johansson <leifj@sunet.se>2010-12-11 00:53:50 +0100
commit41c7ad662c72c975ed6b3b23f33210b2c55efa07 (patch)
tree92bafbcebfc5df2c9a2f7955d561e078fcc096df /coip/apps/userprofile
parent2765ac53fc2a79962a3388bc660a35c8e355a05c (diff)
log has_permission calls
Diffstat (limited to 'coip/apps/userprofile')
-rw-r--r--coip/apps/userprofile/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coip/apps/userprofile/utils.py b/coip/apps/userprofile/utils.py
index 92d839c..d3854f6 100644
--- a/coip/apps/userprofile/utils.py
+++ b/coip/apps/userprofile/utils.py
@@ -10,7 +10,7 @@ from pprint import pformat
def request_profile(request):
if request.user.is_authenticated():
- logging.warning(pformat(request.META))
+ logging.warn(pformat(request.META))
if request.META.has_key('REMOTE_USER'):
return UserProfile.objects.get(identifier=request.META['REMOTE_USER'])
else: