commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/a00d08d23543/ Changeset: a00d08d23543 Branch: next-stable User: jmchilton Date: 2013-10-26 21:12:41 Summary: Fix tool shed e-mail functionality broken with 0d46133c90452dc8815de7057b13548f06beb7bb. Affected #: 1 file diff -r c9982d111e1d593492a55ec2e61448e1dc57c041 -r a00d08d235436ae6b940d5b2871c75011c50d3e3 lib/galaxy/util/__init__.py --- a/lib/galaxy/util/__init__.py +++ b/lib/galaxy/util/__init__.py @@ -873,7 +873,7 @@ log.error( "Mail is not configured for this Galaxy instance." ) log.info( msg ) return - smtp_ssl = asbool( config.smtp_ssl ) + smtp_ssl = asbool( getattr(config, 'smtp_ssl', False ) ) if smtp_ssl: s = smtplib.SMTP_SSL() else: https://bitbucket.org/galaxy/galaxy-central/commits/6e8e8eaa88b2/ Changeset: 6e8e8eaa88b2 User: jmchilton Date: 2013-10-26 21:13:05 Summary: Merge next-stable. Affected #: 1 file diff -r b434587d430fbad2b88da1de18abe905827f7a6f -r 6e8e8eaa88b26cf04ee52dd907c2c5afd71e06ae lib/galaxy/util/__init__.py --- a/lib/galaxy/util/__init__.py +++ b/lib/galaxy/util/__init__.py @@ -872,7 +872,7 @@ log.error( "Mail is not configured for this Galaxy instance." ) log.info( msg ) return - smtp_ssl = asbool( config.smtp_ssl ) + smtp_ssl = asbool( getattr(config, 'smtp_ssl', False ) ) if smtp_ssl: s = smtplib.SMTP_SSL() else: 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)
-
commits-noreply@bitbucket.org