summaryrefslogtreecommitdiff
path: root/coip/apps/userprofile/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'coip/apps/userprofile/utils.py')
-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: