Changeset 219
- Timestamp:
- 09/26/08 17:44:46 (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r218 r219 21 21 Fixed by: Bas van der Vlies 22 22 23 * If a blank email is sent with just an attachment, a blank 24 comment is appended to the comments. fixed closes #89 25 26 Reported/Fixed by: ??? 27 Applied by: Bas van der Vlies 23 28 24 29 2008-05-30 -
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.