Remove webob compatability
authorSebastian Spaeth <Sebastian@SSpaeth.de>
Fri, 16 Nov 2012 10:36:04 +0000 (11:36 +0100)
committerSebastian Spaeth <Sebastian@SSpaeth.de>
Fri, 21 Dec 2012 07:12:25 +0000 (08:12 +0100)
Remove the aliases we provided for webob compatability as webob is
now gone. Grepped the code base to check for occurences of the old
parameters to be safe. Keep request.GET attribute as alias for
request.args as it is often used and django is also using that
attribute.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
mediagoblin/app.py

index 8bd2496f9d1d11d0ab3c5f49b53a0ff4017a80df..9e06e52d9a53b1f9f382035b27570c321f2adb3c 100644 (file)
@@ -135,9 +135,8 @@ class MediaGoblinApp(object):
     def call_backend(self, environ, start_response):
         request = Request(environ)
 
-        ## Compatibility webob -> werkzeug
+        # Compatibility with django, use request.args preferrably
         request.GET = request.args
-        request.accept = request.accept_mimetypes
 
         ## Routing / controller loading stuff
         map_adapter = self.url_map.bind_to_environ(request.environ)