Mercurial > p > roundup > code
diff roundup/cgi/actions.py @ 2264:9b34f41507ed 0.7.0
*** empty log message ***
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 06 May 2004 03:18:03 +0000 |
| parents | 46d9cc1e4fc4 |
| children | 90cca653ef3d f72d2fb8ef78 |
line wrap: on
line diff
--- a/roundup/cgi/actions.py Thu May 06 02:37:56 2004 +0000 +++ b/roundup/cgi/actions.py Thu May 06 03:18:03 2004 +0000 @@ -1,4 +1,4 @@ -#$Id: actions.py,v 1.26 2004-05-06 02:03:42 richard Exp $ +#$Id: actions.py,v 1.27 2004-05-06 03:18:03 richard Exp $ import re, cgi, StringIO, urllib, Cookie, time, random @@ -465,6 +465,7 @@ else: return None d.second = int(d.second) + return d def lastNodeActivity(self): cl = getattr(self.client.db, self.classname) @@ -473,7 +474,6 @@ return activity def detectCollision(self, user_activity, node_activity): - print (user_activity, node_activity) if user_activity: return user_activity < node_activity
