[Commits] (bkirsch) fixes a type bug
commits at osafoundation.org
commits at osafoundation.org
Fri Feb 4 14:32:42 PST 2005
Commit by: bkirsch
Modified files:
chandler/parcels/osaf/mail/smtp.py 1.29 1.30
Log message:
fixes a type bug
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/mail/smtp.py.diff?r1=text&tr1=1.29&r2=text&tr2=1.30
Index: chandler/parcels/osaf/mail/smtp.py
diff -u chandler/parcels/osaf/mail/smtp.py:1.29 chandler/parcels/osaf/mail/smtp.py:1.30
--- chandler/parcels/osaf/mail/smtp.py:1.29 Wed Feb 2 10:45:03 2005
+++ chandler/parcels/osaf/mail/smtp.py Fri Feb 4 14:32:41 2005
@@ -1,5 +1,5 @@
-__revision__ = "$Revision: 1.29 $"
-__date__ = "$Date: 2005/02/02 18:45:03 $"
+__revision__ = "$Revision: 1.30 $"
+__date__ = "$Date: 2005/02/04 22:32:41 $"
__copyright__ = "Copyright (c) 2005 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -290,7 +290,7 @@
elif errorType == errors.SSL_ERROR:
deliveryError.errorCode = errors.SSL_CODE
- elif errorType == errors.cONNECTION_REFUSED_ERROR:
+ elif errorType == errors.CONNECTION_REFUSED_ERROR:
deliveryError.errorCode = errors.CONNECTION_REFUSED_CODE
elif errorType == errors.DNS_LOOKUP_ERROR:
More information about the Commits
mailing list