Changeset 91 for emailtotracscript/trunk


Ignore:
Timestamp:
06/30/06 14:09:51 (18 years ago)
Author:
bas
Message:

EmailtoTracScript?:

email2trac.py.in:

  • Fixed and unicode bug in email_header_txt() Only triggered if email_header is set to 1
Location:
emailtotracscript/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emailtotracscript/trunk/ChangeLog

    r90 r91  
    1717          Fixed by: Bas van der Vlies
    1818
    19         - Catch a LookupError in unicode/encode conversion
     19        - Catch a LookupError in unicode/encode conversion in function
     20          get_body_text()
    2021          Fixed by: Bas van der Vlies
    2122
     
    2526          Patch/Suggestion by: Christian Boos
    2627          Applied by: Bas van der Vlies
     28
     29        - Fixed an encoding problem when email_header is set to 1
     30          Fixed by: Bas van der Vlies
    2731
    28322006-06-02
  • emailtotracscript/trunk/debian/changelog

    r90 r91  
     1email2trac (0.7.3-6) stable; urgency=low
     2
     3  * Fixed an encoding problem when email_header is set to 1
     4
     5 -- root <root@subtrac.sara.nl>  Fri, 30 Jun 2006 13:42:38 +0200
     6
    17email2trac (0.7.3-5) stable; urgency=low
    28
  • emailtotracscript/trunk/email2trac.py.in

    r90 r91  
    8989import mimetypes
    9090
     91# Fix some errors
     92#import codecs
     93
    9194trac_default_version = 0.9
    9295
     
    244247                        str = "%s'''Cc:''' %s [[BR]]" % (str, m['Cc'])
    245248
    246                 return str
     249                return  self.to_unicode(str)
    247250
    248251        def set_owner(self, ticket):
Note: See TracChangeset for help on using the changeset viewer.