Changeset 637
- Timestamp:
- 08/07/13 14:37:09 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r636 r637 4 4 5 5 * cc_fields ignored existing ticket CC field on ticket update, closes #324 6 Author: tboudreau add us dot ntt dot net 7 Applied by: Bas van der Vlies 8 9 * strip_quotes printed to stdout instead of using the logger function. Due this error 10 run_email2trac will break, closes #325 6 11 Author: tboudreau add us dot ntt dot net 7 12 Applied by: Bas van der Vlies -
trunk/email2trac.py.in
r636 r637 2011 2011 match = STRIP_RE.match(line) 2012 2012 if match: 2013 print line2013 self.logger.debug('\t"%s " matched, skipping rest of message' %line) 2014 2014 continue 2015 2015 … … 2020 2020 match = STRIP_RE.match(tmp_line) 2021 2021 if match: 2022 print line2022 self.logger.debug('\t"%s " matched, skipping rest of message' %line) 2023 2023 continue 2024 2024
Note: See TracChangeset
for help on using the changeset viewer.