fix tag u'' display

This commit is contained in:
Ryan Hitchman 2010-03-26 23:19:19 -06:00
parent 89d973080f
commit 9a9922a3ca
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def get_nicks_by_tag(db, chan, subject):
nicks = [munge(x[0], 3) for x in nicks] nicks = [munge(x[0], 3) for x in nicks]
if not nicks: if not nicks:
return 'tag not found' return 'tag not found'
return 'nicks tagged %r: ' % subject + ', '.join(nicks) return 'nicks tagged "%s": ' % subject + ', '.join(nicks)
@hook.command @hook.command