Changeset 290


Ignore:
Timestamp:
11/11/09 11:23:23 (14 years ago)
Author:
bas
Message:

email2trac.py.in:

  • fixed a type in mailto header
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r289 r290  
    11XXXX-XX-XX
     2
     3  * Workflow option did not work, closes #157
     4    Reported by: thomas dot moschny at gmx dot de
     5    Fixed  by: Bas van der Vlies & Thomas Moschny
     6
     7  * When a ticket is updated via email. We must set a changelog id,
     8    closes #156
     9    Reported by: Chris dot Nelson at SIXNET dot com
     10    Fixed by: Bas van der Vlies
     11
     12 * Changed all 'str =' assignments to 's =' to solve conflicts with
     13   the builtin str function
     14    Fixed by: Bas van der Vlies
    215
    3162009-09-02
  • trunk/debian/changelog

    r288 r290  
    1 email2trac (1.1.0-1) stable; urgency=low
     1email2trac (1.1.0-2) stable; urgency=low
    22
    33  * Workflow option did not work, closes #157
     
    1212 * Changed all 'str =' assignments to 's =' to solve conflicts with
    1313   the builtin str function
    14     Fixed by: Bas van der Vlies
     14   Fixed by: Bas van der Vlies
    1515
    1616 -- Bas van der Vlies <bas@sara.nl>  Thu, 22 Oct 2009 17:47:50 +0200
  • trunk/email2trac.py.in

    r289 r290  
    13861386                           )
    13871387
    1388                 s = '\r\n{{{\r\n#!html\r\n<a\r\n href="%s">Reply to: %s\r\n</a>\r\n}}}\r\n' %(str, author)
     1388                s = '\r\n{{{\r\n#!html\r\n<a\r\n href="%s">Reply to: %s\r\n</a>\r\n}}}\r\n' %(s, author)
    13891389                return s
    13901390
Note: See TracChangeset for help on using the changeset viewer.