Changeset 637


Ignore:
Timestamp:
08/07/13 14:37:09 (11 years ago)
Author:
bas
Message:

strip_quotes used python 'print' instead of logging functions, breaks run_email2trac, closes #325

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r636 r637  
    44
    55  * 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
    611    Author: tboudreau add us dot ntt dot net
    712    Applied by: Bas van der Vlies
  • trunk/email2trac.py.in

    r636 r637  
    20112011                match = STRIP_RE.match(line)
    20122012                if match:
    2013                     print line
     2013                    self.logger.debug('\t"%s "  matched, skipping rest of message' %line)
    20142014                    continue
    20152015
     
    20202020                match = STRIP_RE.match(tmp_line)
    20212021                if match:
    2022                     print line
     2022                    self.logger.debug('\t"%s "  matched, skipping rest of message' %line)
    20232023                    continue
    20242024               
Note: See TracChangeset for help on using the changeset viewer.