commit/galaxy-central: martenson: insert empty string instead of None for requirement.version
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6f73d9d8de65/ Changeset: 6f73d9d8de65 User: martenson Date: 2014-12-09 18:40:39+00:00 Summary: insert empty string instead of None for requirement.version Affected #: 1 file diff -r 31c50ee295791a8797ff8391986a469778091ee9 -r 6f73d9d8de65e81d16049f4507777ca5df7dc1bf templates/webapps/galaxy/tool_form.mako --- a/templates/webapps/galaxy/tool_form.mako +++ b/templates/webapps/galaxy/tool_form.mako @@ -362,7 +362,7 @@ <a href="#" class="icon-btn" title="Underlying versions" tabindex="0" data-toggle="popover" data-placement="bottom" data-content= " %for i, requirement in enumerate( tool.requirements ): - ${ requirement.name } v ${ requirement.version } ${ '' if i + 1 == len( tool.requirements ) else ' | ' } + ${ requirement.name } ${ ('v ' + requirement.version ) if requirement.version else ' ' } ${ '' if i + 1 == len( tool.requirements ) else ' | ' } %endfor " onclick="$(function () { 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