Skip to content

Commit 65cad12

Browse files
author
Alexander Smishlajev
committed
fix copy/paste error made in r1.114
1 parent bf49e29 commit 65cad12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/roundupdb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
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 $
1919

2020
"""Extending hyperdb with types specific to issue-tracking.
2121
"""
@@ -245,8 +245,8 @@ def send_message(self, nodeid, msgid, note, sendto, from_address=None,
245245
inreplyto = None
246246
messageid = None
247247
else:
248-
authid = messages.get(msgid, 'inreplyto')
249-
recipients = messages.get(msgid, 'messageid')
248+
inreplyto = messages.get(msgid, 'inreplyto')
249+
messageid = messages.get(msgid, 'messageid')
250250

251251
# make up a messageid if there isn't one (web edit)
252252
if not messageid:

0 commit comments

Comments
 (0)