From eaf14dc9066934bc5e334d45507ea7f242ae41e5 Mon Sep 17 00:00:00 2001 From: Nick Daly Date: Mon, 11 Jun 2012 21:28:14 -0500 Subject: [PATCH] Fix variable name. --- ugly_hacks/santiago/protocols/https/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ugly_hacks/santiago/protocols/https/controller.py b/ugly_hacks/santiago/protocols/https/controller.py index f6c113938..aa0732062 100644 --- a/ugly_hacks/santiago/protocols/https/controller.py +++ b/ugly_hacks/santiago/protocols/https/controller.py @@ -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}})