Changeset 274
- Timestamp:
- 08/17/09 14:25:19 (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r272 r274 6 6 7 7 All Fixes by: Bas van der Vlies 8 9 * if alternate notify template is set then also set ticket id. It will show 10 up as ticket change, closes #142 11 Reported by: hju att jochenkuhl dot de 12 Fixed by: Bas van der Vlies 8 13 9 14 * Error in urllib.quote(filename) could not handle unicode … … 11 16 Reported by: debacle at debian dot org 12 17 Applied by: Bas van der Vlies 18 19 * Fixed an error when debug is on and the body message contains unicode 20 strings, closes #144 21 Reported by: trumbitta at gmail dot com 22 Applied by: Bas van der Vlies 13 23 14 24 2009-04-09 -
trunk/debian/changelog
r272 r274 1 email2trac (0.82- 1) stable; urgency=low1 email2trac (0.82-2) stable; urgency=low 2 2 3 3 * updated aclocal.m4 to support python versions 2.5 and 2.6, closes #137 … … 6 6 7 7 All Fixes by: Bas van der Vlies 8 9 * if alternate notify template is set then also set ticket id. It will show 10 up as ticket change, closes #142 11 Reported by: hju att jochenkuhl dot de 12 Fixed by: Bas van der Vlies 8 13 9 14 * Error in urllib.quote(filename) could not handle unicode … … 13 18 Applied by: Bas van der Vlies 14 19 15 -- root <root@subtrac2.rc.sara.nl> Thu, 04 Jun 2009 14:48:11 +0200 20 21 * Fixed an error when debug is on and the body message contains unicode 22 strings, closes #144 23 Reported by: trumbitta at gmail dot com 24 Applied by: Bas van der Vlies 25 26 -- Bas van der Vlies <basv@sara.nl> Thu, 04 Jun 2009 14:48:11 +0200 16 27 17 28 email2trac (0.80-1) stable; urgency=low -
trunk/email2trac.py.in
r273 r274 391 391 if not message_body: 392 392 message_body = '(None)' 393 394 message_body = message_body.encode('utf-8') 395 #message_body = unicode(message_body, 'iso-8859-15') 396 393 397 fx.write(message_body) 394 398 fx.close() … … 831 835 # 832 836 if self.notify_template: 833 tkt['id'] = ticket_id837 tkt['id'] = self.id 834 838 changed = True 835 839
Note: See TracChangeset
for help on using the changeset viewer.