lint: Fix % comprehensions being used without a tuple.

This commit is contained in:
Tim Abbott 2017-01-09 11:45:11 -08:00
parent d5690c80c9
commit 58a5de0377
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ def get_xkcd_bot_response(message):
except XkcdNotFoundError:
logging.exception('XKCD server responded 404 when trying to fetch comic with id %s'
% (command))
return 'Sorry, there is likely no xkcd comic strip with id: #%s' % (command)
return 'Sorry, there is likely no xkcd comic strip with id: #%s' % (command,)
else:
return ("#%s: **%s**\n[%s](%s)" % (fetched['num'],
fetched['title'],