From: jlgijsbers Date: Mon, 8 Sep 2003 21:08:18 +0000 (+0000) Subject: Fix misnamed exception clause. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8bf3c4f9c07c6d6afc418607566f799900dabb0c;p=roundup.git Fix misnamed exception clause. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1869 57a73879-2fb5-44c3-a270-3262357dd7e2 --- 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):