Edgewall Software

Ticket #2408: Ticket_2408.patch

File Ticket_2408.patch, 484 bytes (added by dbrocher@…, 3 years ago)

This patch fixes the problem in the trunk at the current revision 2569

  • Notify.py

    old new  
    291291            cursor.execute("SELECT DISTINCT author,ticket FROM ticket_change " 
    292292                           "WHERE ticket=%s", (tktid,)) 
    293293            for author,ticket in cursor: 
    294                 recipients.append(row[0]) 
     294                recipients.append(author) 
    295295 
    296296        # Add smtp_always_cc address 
    297297        acc = self.config.get('notification', 'smtp_always_cc')