Update RouteFS for the new syntax in Routes 1.9.
[invirt/packages/python-routefs.git] / routefs / dictfs.py
index 25904b1..9226c70 100644 (file)
@@ -31,7 +31,7 @@ class DictFS(routefs.RouteFS):
     def make_map(self):
         m = Mapper()
 
-        m.connect('*path', controller='handler')
+        m.connect('/{path:.*}', controller='handler')
 
         return m