From: cloudaice Date: Wed, 22 May 2013 17:55:23 +0000 (+0200) Subject: fixed bugs X-Git-Tag: v3.1.0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc8316bc19cc8b9154089b46a17e0d9101586ef9;p=thirdparty%2Ftornado.git fixed bugs --- diff --git a/tornado/auth.py b/tornado/auth.py index df95884b2..ded1821b9 100644 --- a/tornado/auth.py +++ b/tornado/auth.py @@ -1223,8 +1223,8 @@ class FacebookGraphMixin(OAuth2Mixin): def _on_facebook_request(self, future, response): if response.error: - future.set_exception(AuthError("Error response %s fetching %s", - response.error, response.request.url)) + future.set_exception(AuthError("Error response %s fetching %s" % + (response.error, response.request.url))) return future.set_result(escape.json_decode(response.body))