aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoar Wandborg <joar@wandborg.se>2013-03-02 23:17:50 +0100
committerJoar Wandborg <joar@wandborg.se>2013-03-02 23:21:03 +0100
commit56c113c77005a889834f43fb13549d531f391be4 (patch)
tree45e49f6f1497650da6a8e67aabdb1c2020e936a7
parent0e80b31626fbf961b7492af3ecb4bd6330ef28df (diff)
downloadmediagoblin-56c113c77005a889834f43fb13549d531f391be4.tar.lz
mediagoblin-56c113c77005a889834f43fb13549d531f391be4.tar.xz
mediagoblin-56c113c77005a889834f43fb13549d531f391be4.zip
Do not encode the next kwarg twice
-rw-r--r--mediagoblin/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py
index fbf7b188..f3535fcf 100644
--- a/mediagoblin/decorators.py
+++ b/mediagoblin/decorators.py
@@ -43,7 +43,7 @@ def require_active_login(controller):
request.url)
return redirect(request, 'mediagoblin.auth.login',
- next=url_quote(next_url))
+ next=next_url)
return controller(request, *args, **kwargs)