From 8bf3c4f9c07c6d6afc418607566f799900dabb0c Mon Sep 17 00:00:00 2001 From: jlgijsbers Date: Mon, 8 Sep 2003 21:08:18 +0000 Subject: [PATCH] Fix misnamed exception clause. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1869 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/cgi/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roundup/cgi/client.py b/roundup/cgi/client.py index 98f772e..306a379 100644 --- a/roundup/cgi/client.py +++ b/roundup/cgi/client.py @@ -1,4 +1,4 @@ -# $Id: client.py,v 1.137 2003-09-08 21:07:29 jlgijsbers Exp $ +# $Id: client.py,v 1.138 2003-09-08 21:08:18 jlgijsbers Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -794,7 +794,7 @@ reply's additional "Re:" is ok), try: self.mailer.standard_message(to, subject, body, author) return 1 - except MessageSendException, e: + except MessageSendError, e: self.error_message.append(str(e)) def registerPermission(self, props): -- 2.30.2