Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 2765:3468f74bd7ce
fix copy/paste error made in r1.114
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sat, 16 Oct 2004 13:31:29 +0000 |
| parents | 3a7039bc2f97 |
| children | a8808157f892 |
line wrap: on
line diff
--- a/roundup/roundupdb.py Sat Oct 16 12:52:53 2004 +0000 +++ b/roundup/roundupdb.py Sat Oct 16 13:31:29 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.115 2004-10-08 05:51:00 richard Exp $ +# $Id: roundupdb.py,v 1.116 2004-10-16 13:31:29 a1s Exp $ """Extending hyperdb with types specific to issue-tracking. """ @@ -245,8 +245,8 @@ inreplyto = None messageid = None else: - authid = messages.get(msgid, 'inreplyto') - recipients = messages.get(msgid, 'messageid') + inreplyto = messages.get(msgid, 'inreplyto') + messageid = messages.get(msgid, 'messageid') # make up a messageid if there isn't one (web edit) if not messageid:
