Skip to content

Commit

Permalink
fixed bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudaice authored and bdarnell committed May 24, 2013
1 parent 5398252 commit dc8316b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tornado/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -1223,8 +1223,8 @@ def get(self):

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))
Expand Down

0 comments on commit dc8316b

Please sign in to comment.