urltree.py
changeset 60 616ab1e5b593
parent 59 3b9a95c333e5
child 62 4c96d431336f
--- a/urltree.py	Thu Feb 12 01:53:21 2009 +0200
+++ b/urltree.py	Thu Feb 12 22:51:08 2009 +0200
@@ -5,7 +5,7 @@
 import re
 import os.path
 
-from qmsk.web import map
+from qmsk.web import handler
 
 class URLError (Exception) :
     """
@@ -870,7 +870,7 @@
     def __str__ (self) :
         return "%s/[%s]" % (self.label, ','.join(str(child) for child in self.children))
 
-class URLTree (map.Mapper) :
+class URLTree (handler.RequestHandler) :
     """
         Map requests to handlers, using a defined tree of URLs
     """