comparison 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
comparison
equal deleted inserted replaced
2764:d3b3f1b3d59e 2765:3468f74bd7ce
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 14 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17 # 17 #
18 # $Id: roundupdb.py,v 1.115 2004-10-08 05:51:00 richard Exp $ 18 # $Id: roundupdb.py,v 1.116 2004-10-16 13:31:29 a1s Exp $
19 19
20 """Extending hyperdb with types specific to issue-tracking. 20 """Extending hyperdb with types specific to issue-tracking.
21 """ 21 """
22 __docformat__ = 'restructuredtext' 22 __docformat__ = 'restructuredtext'
23 23
243 243
244 if msgid is None: 244 if msgid is None:
245 inreplyto = None 245 inreplyto = None
246 messageid = None 246 messageid = None
247 else: 247 else:
248 authid = messages.get(msgid, 'inreplyto') 248 inreplyto = messages.get(msgid, 'inreplyto')
249 recipients = messages.get(msgid, 'messageid') 249 messageid = messages.get(msgid, 'messageid')
250 250
251 # make up a messageid if there isn't one (web edit) 251 # make up a messageid if there isn't one (web edit)
252 if not messageid: 252 if not messageid:
253 # this is an old message that didn't get a messageid, so 253 # this is an old message that didn't get a messageid, so
254 # create one 254 # create one

Roundup Issue Tracker: http://roundup-tracker.org/