Skip to content

Commit d4c144c

Browse files
author
Johannes Gijsbers
committed
Fix misnamed exception clause.
1 parent bd8e6ec commit d4c144c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/cgi/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: client.py,v 1.137 2003-09-08 21:07:29 jlgijsbers Exp $
1+
# $Id: client.py,v 1.138 2003-09-08 21:08:18 jlgijsbers Exp $
22

33
__doc__ = """
44
WWW request handler (also used in the stand-alone server).
@@ -794,7 +794,7 @@ def standard_message(self, to, subject, body, author=None):
794794
try:
795795
self.mailer.standard_message(to, subject, body, author)
796796
return 1
797-
except MessageSendException, e:
797+
except MessageSendError, e:
798798
self.error_message.append(str(e))
799799

800800
def registerPermission(self, props):

0 commit comments

Comments
 (0)