Fixed display of /me

This commit is contained in:
Dave Pedu 2013-02-24 01:13:12 -05:00
parent b16e833908
commit aa6ca6a23f
1 changed files with 5 additions and 1 deletions

View File

@ -42,7 +42,11 @@ def seen(inp, nick='', chan='', db=None, input=None):
reltime = timesince.timesince(last_seen[1])
if last_seen[0] != inp.lower(): # for glob matching
inp = last_seen[0]
return '%s was last seen %s ago saying: %s' % \
if last_seen[2][0:1]=="\x01":
return '%s was last seen %s ago: *%s %s*' % \
(inp, reltime, inp, last_seen[2][8:-1])
else:
return '%s was last seen %s ago saying: %s' % \
(inp, reltime, last_seen[2])
else:
return "I've never seen %s" % inp