Skip to content

Commit

Permalink
Filter: fix a bug introduced by b78319b
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
GLolol authored and GLolol committed Jan 3, 2015
1 parent 015d7f3 commit f2c6648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Filter/plugin.py
Expand Up @@ -619,7 +619,7 @@ def spellit(self, irc, msg, args, text):
except KeyError:
pass
write(c)
irc.reply(out.getvalue()[1:])
irc.reply(out.getvalue().strip())
spellit = wrap(spellit, ['text'])

@internationalizeDocstring
Expand Down

0 comments on commit f2c6648

Please sign in to comment.