commit/galaxy-central: Dave Bouvier: Fix string interpolation in a log message.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/30d30843b57f/ Changeset: 30d30843b57f User: Dave Bouvier Date: 2013-11-20 22:51:02 Summary: Fix string interpolation in a log message. Affected #: 1 file diff -r d0fe08c597a40b32a5d6c9a57b4be07f610fdfc7 -r 30d30843b57f5b8fe809ed2c226cf41e82b8465e lib/tool_shed/scripts/check_tool_dependency_definition_repositories.py --- a/lib/tool_shed/scripts/check_tool_dependency_definition_repositories.py +++ b/lib/tool_shed/scripts/check_tool_dependency_definition_repositories.py @@ -86,7 +86,7 @@ now = strftime( "%Y-%m-%d %H:%M:%S" ) print "#############################################################################" - print "# %s - Validating repositories of type %s on %s..." % ( TOOL_DEPENDENCY_DEFINITION, now ) + print "# %s - Validating repositories of type %s on %s..." % ( TOOL_DEPENDENCY_DEFINITION, now, config_parser.get( config_section, 'host' ) ) print "# This tool shed is configured to listen on %s:%s" % ( config_parser.get( config_section, 'host' ), config_parser.get( config_section, 'port' ) ) app = RepositoriesApplication( config ) 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