Mercurial > p > roundup > code
diff templates/classic/detectors/nosyreaction.py @ 1780:d2801a2b0a77
Initial implementation (half-baked) at new Tracker instance.
Cleaned up caching API / comments in backends.
Fixes to docs.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 04 Sep 2003 00:47:01 +0000 |
| parents | 21312a7564fd |
| children | 190ace261c0c 34d034a4c0d9 |
line wrap: on
line diff
--- a/templates/classic/detectors/nosyreaction.py Sun Aug 31 03:43:07 2003 +0000 +++ b/templates/classic/detectors/nosyreaction.py Thu Sep 04 00:47:01 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: nosyreaction.py,v 1.1 2003-04-17 03:26:38 richard Exp $ +#$Id: nosyreaction.py,v 1.2 2003-09-04 00:47:01 richard Exp $ from roundup import roundupdb, hyperdb @@ -107,8 +107,8 @@ else: ok = ('yes',) # figure which of the messages now on the issue weren't - # there before - make sure we don't get a cached version! - oldmessages = cl.get(nodeid, 'messages', cache=0) + # there before + oldmessages = cl.get(nodeid, 'messages') messages = [] for msgid in newvalues['messages']: if msgid not in oldmessages:
