Changeset 316
- Timestamp:
- 02/15/10 11:44:25 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/debian/changelog
r314 r316 12 12 Author: samuel at hoffstaetter dot com 13 13 Applied by: Bas van der Vlies 14 15 * Fixed a bug when there is no subject line in the message, closes #179 16 Reported by: xurizaemon 17 Fixed by: Bas van der Vlies 14 18 15 19 -- Bas van der Vlies <basv@sara.nl> Wed, 27 Jan 2010 16:17:41 +0100 -
trunk/email2trac.py.in
r315 r316 994 994 995 995 # Work around lack of header folding in Python; see http://bugs.python.org/issue4696 996 m.replace_header('Subject', m['Subject'].replace('\r', '').replace('\n', '')) 996 try: 997 m.replace_header('Subject', m['Subject'].replace('\r', '').replace('\n', '')) 998 except AttributeError, detail: 999 pass 997 1000 998 1001 if self.DEBUG > 1: # save the entire e-mail message text
Note: See TracChangeset
for help on using the changeset viewer.