Changeset 219 for trunk/email2trac.py.in
- Timestamp:
- 09/26/08 17:44:46 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/email2trac.py.in
r218 r219 628 628 body_text = u"%s\r\n%s" %(head, body_text) 629 629 630 tkt.save_changes(self.author, body_text, when) 630 if body_text.strip(): 631 tkt.save_changes(self.author, body_text, when) 632 631 633 tkt['id'] = ticket_id 632 634 … … 783 785 784 786 if self.DEBUG > 1: # save the entire e-mail message text 785 self.save_email_for_debug(m )787 self.save_email_for_debug(m, True) 786 788 self.debug_attachments(m) 787 789
Note: See TracChangeset
for help on using the changeset viewer.