Fix tests and remove debug logging

This commit is contained in:
Erik Johnston 2014-12-12 15:08:29 +00:00
parent 7b43a503f3
commit 1fc2a0e33e
2 changed files with 7 additions and 6 deletions

View file

@ -124,14 +124,10 @@ class JsonResource(HttpServer, resource.Resource):
# returned response. We pass both the request and any
# matched groups from the regex to the callback.
logger.debug("url things: %r", m.groups())
args = [
urllib.unquote(u).decode("UTF-8") for u in m.groups()
]
logger.debug("url things args: %r", args)
code, response = yield path_entry.callback(
request,
*args