Filter: remove leading space from !spellit output

This commit is contained in:
GLolol 2014-05-14 16:00:24 -07:00
parent 0e5694e9c7
commit b78319ba2a
1 changed files with 1 additions and 1 deletions

View File

@ -642,7 +642,7 @@ class Filter(callbacks.Plugin):
except KeyError: except KeyError:
pass pass
write(c) write(c)
irc.reply(out.getvalue()) irc.reply(out.getvalue()[1:])
spellit = wrap(spellit, ['text']) spellit = wrap(spellit, ['text'])
@internationalizeDocstring @internationalizeDocstring