commit/galaxy-central: natefoo: Fix an exception class that doesn't exist. Thanks Oleksandr Moskalenko.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/429f6b869c71/ changeset: 429f6b869c71 user: natefoo date: 2011-11-10 18:49:44 summary: Fix an exception class that doesn't exist. Thanks Oleksandr Moskalenko. affected #: 1 file diff -r d9408bcb3cf4bcb81e9dac4ddeda74cbc164e123 -r 429f6b869c71b2aa2df8d6b61b6e12cd22fc8a4d lib/galaxy/util/__init__.py --- a/lib/galaxy/util/__init__.py +++ b/lib/galaxy/util/__init__.py @@ -607,7 +607,7 @@ log.error( "The server didn't accept the username/password combination: %s" % e ) s.close() raise - except smtplib.SMTPError, e: + except smtplib.SMTPException, e: log.error( "No suitable authentication method was found: %s" % e ) s.close() raise Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket