diff pylons_app/config/routing.py @ 8:3092016c6d0c

Changed to webapp, removed get from routes,
author Marcin Kuzminski
date Thu, 18 Feb 2010 17:36:43 +0100
parents ad0dd3904225
children 2e1247e62c5b
line wrap: on
line diff
--- a/pylons_app/config/routing.py	Thu Feb 18 14:52:59 2010 +0100
+++ b/pylons_app/config/routing.py	Thu Feb 18 17:36:43 2010 +0100
@@ -23,6 +23,6 @@
                 controller = 'hg', action = 'add_repo')
     map.connect('hg', '/{path_info:.*}',
                 controller = 'hg', action = "view",
-                path_info = '/', conditions = {'method':'GET'})
+                path_info = '/')
 
     return map