diff -r 09196d5b2a39 -r 79ea0e2a6cc2 sites/irclogs.qmsk.net/urls.py --- a/sites/irclogs.qmsk.net/urls.py Sat Feb 07 17:10:06 2009 +0200 +++ b/sites/irclogs.qmsk.net/urls.py Sat Feb 07 17:14:01 2009 +0200 @@ -7,14 +7,14 @@ import handlers # library stuff -from lib.map import StaticMapping, map, mapre +from lib.map import StaticMapper, map, mapre def build_mapper () : """ Construct and return the Mapping object """ - return StaticMapping([ + return StaticMapper([ map( '/', handlers.index ), map( '/channel/%s', handlers.channel_view ), mapre( r'^/channel/(\w+)/last/(\d+)(\.\w+)?', handlers.channel_last ),