Fix previous commit (again).

This commit is contained in:
Valentin Lorentz 2013-02-09 19:37:10 +01:00
parent c918074b92
commit b90bd4b9d9
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@ def topic(channel, topic=None, prefix='', msg=None):
return IrcMsg(prefix=prefix, command='TOPIC',
args=(channel,), msg=msg)
else:
if sys.version_info[0] < 3 and isinstance(s, unicode):
if sys.version_info[0] < 3 and isinstance(topic, unicode):
s = s.decode('utf8')
assert isinstance(topic, str)
return IrcMsg(prefix=prefix, command='TOPIC',