Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_wsgi/embedded_wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def call_wsgi_app(wsgi_app, request, path_info):
new_request.script_name = webob_request.script_name + consumed_path

# If the user has been authenticated in Django, log him in the WSGI app:
if request.user.is_authenticated():
if request.user.is_authenticated:
new_request.remote_user = request.user.username

# Cleaning the routing_args, if any. The application should have its own
Expand Down