Misc: Fix order of replies of @tell, in order to fix issue with nesting.

Using @ignore [tell foo bar] was telling 'The operation succeeded' to foo, and ignore 'bar'.
This commit is contained in:
Valentin Lorentz 2011-09-18 10:31:09 +02:00
parent 669a8a86e8
commit 90ad25668e
2 changed files with 2 additions and 2 deletions

View File

@ -490,8 +490,8 @@ class Misc(callbacks.Plugin):
irc.action = False
text = '* %s %s' % (irc.nick, text)
s = _('%s wants me to tell you: %s') % (msg.nick, text)
irc.reply(s, to=target, private=True)
irc.replySuccess()
irc.reply(s, to=target, private=True)
tell = wrap(tell, ['something', 'text'])
@internationalizeDocstring

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change
them once."""
version = '0.83.4.1+limnoria (2011-09-11T20:13:20+0200)'
version = '0.83.4.1+limnoria (2011-09-18T10:31:09+0200)'