commit/galaxy-central: Dave Bouvier: Fix tool description being displayed in version column.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/d36e62d38e67/ Changeset: d36e62d38e67 User: Dave Bouvier Date: 2013-12-06 18:31:11 Summary: Fix tool description being displayed in version column. Affected #: 1 file diff -r b469e14ff34c91e747057f91086969ef726fe78d -r d36e62d38e670ca18d294ce03b8e2aeba75fa8ee lib/tool_shed/util/container_util.py --- a/lib/tool_shed/util/container_util.py +++ b/lib/tool_shed/util/container_util.py @@ -987,7 +987,7 @@ tool_id = str( tool_dict.get( 'id', 'unknown' ) ) name = str( tool_dict.get( 'name', 'unknown' ) ) description = str( tool_dict.get( 'description', '' ) ) - version = str( tool_dict.get( 'description', 'unknown' ) ) + version = str( tool_dict.get( 'version', 'unknown' ) ) except Exception, e: tool_config = str( e ) tool_id = 'unknown' 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