From dc8316bc19cc8b9154089b46a17e0d9101586ef9 Mon Sep 17 00:00:00 2001 From: cloudaice Date: Wed, 22 May 2013 19:55:23 +0200 Subject: [PATCH] fixed bugs --- tornado/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.47.2