diff options
author | Joar Wandborg <git@wandborg.com> | 2012-09-29 21:07:15 +0200 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-09-29 21:08:20 +0200 |
commit | 111a609df526bd3690fc03e623eaf5826f33f4d2 (patch) | |
tree | 87029ee907afd4f35896ddfe582437b59747dccc /mediagoblin/app.py | |
parent | a6ec38c3c1caf4735f2da45a12fb2d0a5861d830 (diff) | |
download | mediagoblin-111a609df526bd3690fc03e623eaf5826f33f4d2.tar.lz mediagoblin-111a609df526bd3690fc03e623eaf5826f33f4d2.tar.xz mediagoblin-111a609df526bd3690fc03e623eaf5826f33f4d2.zip |
Replaced all request.POST with request.form, ...
- Fixed error handling in OAuth plugin
- Changed request.POST file fields to request.files
Diffstat (limited to 'mediagoblin/app.py')
-rw-r--r-- | mediagoblin/app.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mediagoblin/app.py b/mediagoblin/app.py index 30ac3e01..08515df9 100644 --- a/mediagoblin/app.py +++ b/mediagoblin/app.py @@ -130,7 +130,6 @@ class MediaGoblinApp(object): ## Compatibility webob -> werkzeug request.GET = request.args - request.POST = request.form request.accept_language = request.accept_languages request.accept = request.accept_mimetypes |