From ef6fe23e02f73aaa5fd0965fb57923de104d27d4 Mon Sep 17 00:00:00 2001 From: Daniel Folkinshteyn Date: Mon, 4 Apr 2011 16:30:52 -0400 Subject: [PATCH] Seen: fix tests so they pass. fix seen command so it properly accepts nick wildcards. Conflicts: src/version.py --- plugins/Seen/plugin.py | 4 ++-- src/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/Seen/plugin.py b/plugins/Seen/plugin.py index 7f1fbd718..565a28c54 100644 --- a/plugins/Seen/plugin.py +++ b/plugins/Seen/plugin.py @@ -222,10 +222,10 @@ class Seen(callbacks.Plugin): Returns the last time was seen and what was last seen saying. is only necessary if the message isn't sent on the - channel itself. + channel itself. may contain * as a wildcard. """ self._seen(irc, channel, name) - seen = wrap(seen, ['channel', 'nick']) + seen = wrap(seen, ['channel', 'something']) @internationalizeDocstring def any(self, irc, msg, args, channel, optlist, name): diff --git a/src/version.py b/src/version.py index b73d4b4e4..c772ecd95 100644 --- a/src/version.py +++ b/src/version.py @@ -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-04-26T10:32:24+0200)' +version = '0.83.4.1+limnoria (2011-05-27T18:16:23+0200)'