Merge pull request #68 from dpedu/master

Fixed display of /me
This commit is contained in:
Ryan Hitchman 2013-07-04 11:24:30 -07:00
commit 89a8da4ad9
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