cubicweb/wsgi/handler.py
changeset 11725 904ee9cd0cf9
parent 11057 0b59724cb3f2
child 11767 432f87a63057
--- a/cubicweb/wsgi/handler.py	Thu Oct 20 18:28:46 2016 +0200
+++ b/cubicweb/wsgi/handler.py	Fri Oct 21 13:09:47 2016 +0200
@@ -108,8 +108,7 @@
         """this function performs the actual rendering
         """
         try:
-            path = req.path
-            result = self.appli.handle_request(req, path)
+            result = self.appli.handle_request(req)
         except DirectResponse as ex:
             return ex.response
         return WSGIResponse(req.status_out, req, result)