Update of /cvsroot/pybot/pybot/pybot/modules
In directory sc8-pr-cvs1:/tmp/cvs-serv6906/pybot/modules
Modified Files:
log.py
Log Message:
Fixed return in "seen" command.
Index: log.py
===================================================================
RCS file: /cvsroot/pybot/pybot/pybot/modules/log.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** log.py 12 May 2003 20:42:21 -0000 1.10
--- log.py 12 May 2003 22:16:52 -0000 1.11
***************
*** 183,187 ****
"last time I saw somebody",
"that good", "allowed to do this"]),
! "No", "Nope"], [".", "!"])
m = self.re2.match(msg.line)
if m:
--- 183,189 ----
"last time I saw somebody",
"that good", "allowed to do this"]),
! [".", "!"])
! return 0
!
m = self.re2.match(msg.line)
if m:
|