mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-26 20:59:27 +01:00
Filter: fix a bug introduced by b78319ba2a
This caused the first character in text to be cut off if it is not set to be replaced (e.g. a letter when 'config plugins.format.spellit.replaceletters' is off).
This commit is contained in:
parent
015d7f38d0
commit
f2c66480bc
@ -619,7 +619,7 @@ class Filter(callbacks.Plugin):
|
||||
except KeyError:
|
||||
pass
|
||||
write(c)
|
||||
irc.reply(out.getvalue()[1:])
|
||||
irc.reply(out.getvalue().strip())
|
||||
spellit = wrap(spellit, ['text'])
|
||||
|
||||
@internationalizeDocstring
|
||||
|
Loading…
Reference in New Issue
Block a user