Changeset 316 for trunk/email2trac.py.in
- Timestamp:
- 02/15/10 11:44:25 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.