From: richard Date: Thu, 14 Apr 2011 05:29:39 +0000 (+0000) Subject: Fixed bug in mailgw refactoring, patch issue2550697 (thanks Hubert Touvet) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1631bfec580afbc7c7051a8c0e169297092304ba;hp=baf888b4cae34fe78067ce54099db284e964829a;p=roundup.git Fixed bug in mailgw refactoring, patch issue2550697 (thanks Hubert Touvet) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4586 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index 7599d15..5b94599 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -73,7 +73,8 @@ Fixed: HINT: Use the same encoding as in the template database, or use template0 as template. (Ralf Schlatterbeck) - +- Fixed bug in mailgw refactoring, patch issue2550697 (thanks Hubert + Touvet) 2010-10-08 1.4.16 (r4541) diff --git a/doc/acknowledgements.txt b/doc/acknowledgements.txt index e523d87..2380b8a 100644 --- a/doc/acknowledgements.txt +++ b/doc/acknowledgements.txt @@ -131,6 +131,7 @@ Mitchell Surface, Anatoly T., Jon C. Thomason Mike Thompson, +Hubert Touvet, Michael Twomey, Joseph E. Trent, Karl Ulbrich, diff --git a/roundup/mailgw.py b/roundup/mailgw.py index cd06889..922dc12 100644 --- a/roundup/mailgw.py +++ b/roundup/mailgw.py @@ -704,7 +704,7 @@ Subject was: '%(subject)s' attempts.append(classname) if self.mailgw.default_class: - attempts.append(self.default_class) + attempts.append(self.mailgw.default_class) else: attempts.append(self.config['MAILGW_DEFAULT_CLASS'])