wsgi/handler.py
changeset 8272 18893bb969d2
parent 7083 b8e35cde46e9
child 8309 48ef505aa9f9
--- a/wsgi/handler.py	Mon Feb 27 11:50:04 2012 +0100
+++ b/wsgi/handler.py	Mon Feb 27 11:51:09 2012 +0100
@@ -126,9 +126,6 @@
             self.appli.connect(req)
         except Redirect, ex:
             return self.redirect(req, ex.location)
-        path = req.path
-        if not path or path == "/":
-            path = 'view'
         try:
             result = self.appli.publish(path, req)
         except DirectResponse, ex: