Skip to content

Commit a3df8a2

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent e8959a6 commit a3df8a2

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

doc/announcement.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Some highlights:
1616
- database exports now include full journals
1717
- IMAP support in the mail gateway
1818

19+
Known issues:
20+
21+
- the metakit import feature currently has a bug and should not be used
22+
1923
If you're upgrading from an older version of Roundup you *must* follow
2024
the "Software Upgrade" guidelines given in the maintenance documentation.
2125

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.26 2004-05-06 02:03:42 richard Exp $
1+
#$Id: actions.py,v 1.27 2004-05-06 03:18:03 richard Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random
44

@@ -465,6 +465,7 @@ def lastUserActivity(self):
465465
else:
466466
return None
467467
d.second = int(d.second)
468+
return d
468469

469470
def lastNodeActivity(self):
470471
cl = getattr(self.client.db, self.classname)
@@ -473,7 +474,6 @@ def lastNodeActivity(self):
473474
return activity
474475

475476
def detectCollision(self, user_activity, node_activity):
476-
print (user_activity, node_activity)
477477
if user_activity:
478478
return user_activity < node_activity
479479

0 commit comments

Comments
 (0)