diff options
author | Joar Wandborg <git@wandborg.com> | 2012-10-14 20:05:44 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-10-14 20:05:44 +0200 |
commit | 1ec7ff2adbb1821c5318b4e0a18194f441d7a87e (patch) | |
tree | e415ea2f74c48d04dd4a76a1b31ff19562948fc0 /mediagoblin/user_pages/routing.py | |
parent | 7742dcc1fbda04c3a1c76a057a1a93a8f504502e (diff) | |
download | mediagoblin-1ec7ff2adbb1821c5318b4e0a18194f441d7a87e.tar.lz mediagoblin-1ec7ff2adbb1821c5318b4e0a18194f441d7a87e.tar.xz mediagoblin-1ec7ff2adbb1821c5318b4e0a18194f441d7a87e.zip |
Fixed 404 page under werkzeug.routing
- Removed ?lang=<langcode> feature due to incompatibility with werkzeug
routes in the current state of the architecture.
Diffstat (limited to 'mediagoblin/user_pages/routing.py')
-rw-r--r-- | mediagoblin/user_pages/routing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/user_pages/routing.py b/mediagoblin/user_pages/routing.py index 678f18f9..35e1bd6e 100644 --- a/mediagoblin/user_pages/routing.py +++ b/mediagoblin/user_pages/routing.py @@ -74,7 +74,7 @@ add_route('mediagoblin.user_pages.processing_panel', # Stray edit routes add_route('mediagoblin.edit.edit_media', '/u/<string:user>/m/<string:media>/edit/', - 'mediagoblin.user_pages.views:edit_media') + 'mediagoblin.edit.views:edit_media') add_route('mediagoblin.edit.attachments', '/u/<string:user>/m/<string:media>/attachments/', |