From 1631bfec580afbc7c7051a8c0e169297092304ba Mon Sep 17 00:00:00 2001 From: richard Date: Thu, 14 Apr 2011 05:29:39 +0000 Subject: [PATCH] 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 --- CHANGES.txt | 3 ++- doc/acknowledgements.txt | 1 + roundup/mailgw.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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']) -- 2.30.2