diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-10-15 11:07:13 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-10-15 11:07:13 -0500 |
commit | f693f9af88215b40ae7c7e2adb4f39fb7fd3b096 (patch) | |
tree | 07cd44a4ce495d0bc2b64f2c8f087448b1372736 /mediagoblin/decorators.py | |
parent | 76c94f6edfe8050f56242dd758f8830f24d1b339 (diff) | |
parent | 05788ef450cd63da4009cea1825323e10e572e43 (diff) | |
download | mediagoblin-f693f9af88215b40ae7c7e2adb4f39fb7fd3b096.tar.lz mediagoblin-f693f9af88215b40ae7c7e2adb4f39fb7fd3b096.tar.xz mediagoblin-f693f9af88215b40ae7c7e2adb4f39fb7fd3b096.zip |
Merge remote branch 'remotes/elrond/misc/i592_use_full_path'
Diffstat (limited to 'mediagoblin/decorators.py')
-rw-r--r-- | mediagoblin/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py index 19e22bca..6431d67e 100644 --- a/mediagoblin/decorators.py +++ b/mediagoblin/decorators.py @@ -45,7 +45,7 @@ def require_active_login(controller): return exc.HTTPFound( location="%s?next=%s" % ( request.urlgen("mediagoblin.auth.login"), - request.path_info)) + request.full_path)) return controller(request, *args, **kwargs) |