Skip to content

Commit

Permalink
Fixed a unicode decode error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobian committed Dec 12, 2011
1 parent 7a13ce3 commit 6308c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycon_bot/thunder.py
Expand Up @@ -80,7 +80,7 @@ def handle_next(self, channel, minutes=REVIEW_MINUTES):
self.msg(channel, '=== Thunderdome for "{name}" begins now! ==='.format(**group))
for talk_id, talk_title in group["talks"].items():
self.msg(channel, "#{id}: {title} - {url}".format(
url=self.talk_url(talk_id), title=talk_title, id=talk_id))
url=self.talk_url(talk_id), title=talk_title.encode('ascii', 'ignore'), id=talk_id))
self.msg(channel, "You now have {minutes} minutes ".format(minutes=minutes) +
"to review these talks and collect your thoughts prior to "
"debate. Please refrain from speaking until debate begins.")
Expand Down

0 comments on commit 6308c65

Please sign in to comment.