Fix variable name.

This commit is contained in:
Nick Daly 2012-06-11 21:28:14 -05:00
parent f2b2af9f3b
commit eaf14dc906

View File

@ -58,7 +58,7 @@ class Listener(santiago.SantiagoListener):
d.connect("index", "/", self.index)
d.connect("learn", "/learn/:host/:service", self.learn)
d.connect("where", "/where/:host/:service", self.where)
d.connect("provide", "/provide/:host/:service/:location", self.provide)
d.connect("provide", "/provide/:client/:service/:location", self.provide)
cherrypy.tree.mount(cherrypy.Application(self), "",
{"/": {"request.dispatch": d}})