Seen: fix tests so they pass. fix seen command so it properly accepts nick wildcards.

Conflicts:

	src/version.py
This commit is contained in:
Daniel Folkinshteyn 2011-04-04 16:30:52 -04:00 committed by Valentin Lorentz
parent 8979475e13
commit ef6fe23e02
2 changed files with 3 additions and 3 deletions

View File

@ -222,10 +222,10 @@ class Seen(callbacks.Plugin):
Returns the last time <nick> was seen and what <nick> was last seen Returns the last time <nick> was seen and what <nick> was last seen
saying. <channel> is only necessary if the message isn't sent on the saying. <channel> is only necessary if the message isn't sent on the
channel itself. channel itself. <nick> may contain * as a wildcard.
""" """
self._seen(irc, channel, name) self._seen(irc, channel, name)
seen = wrap(seen, ['channel', 'nick']) seen = wrap(seen, ['channel', 'something'])
@internationalizeDocstring @internationalizeDocstring
def any(self, irc, msg, args, channel, optlist, name): def any(self, irc, msg, args, channel, optlist, name):

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change """stick the various versioning attributes in here, so we only have to change
them once.""" 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)'