Changeset 765


Ignore:
Timestamp:
12/15/08 20:12:39 (4 years ago)
Author:
rcorsaro
Message:

fix for no cc field exception(with mail2trac

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/trac-hacks/announcerplugin/announcerplugin/subscribers/ticket_compat.py

    r748 r765  
    208208        if event.realm == 'ticket': 
    209209            if event.category in ('created', 'changed', 'attachment added'): 
    210                 cc = event.target['cc'] 
     210                cc = event.target['cc'] or '' 
    211211                for chunk in re.split('\s|,', cc): 
    212212                    chunk = chunk.strip() 
Note: See TracChangeset for help on using the changeset viewer.