commit/galaxy-central: dan: Delimit Biostar tags by commas.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6956c4b2d9cd/ Changeset: 6956c4b2d9cd User: dan Date: 2014-03-03 23:21:50 Summary: Delimit Biostar tags by commas. Affected #: 1 file diff -r b6138d0f8a753cfcc76881d18c0e4cac6298a921 -r 6956c4b2d9cdf2244604dd2782c4c5667c52868e lib/galaxy/webapps/galaxy/controllers/biostar.py --- a/lib/galaxy/webapps/galaxy/controllers/biostar.py +++ b/lib/galaxy/webapps/galaxy/controllers/biostar.py @@ -135,6 +135,6 @@ # Tool specific information for payload payload = { 'title':'Need help with "%s" tool' % ( tool.name ), 'content': '<br /><hr /><p>Tool name: %s</br>Tool version: %s</br>Tool ID: %s</p>' % ( tool.name, tool.version, tool.id ), - 'tag_val': 'galaxy ' + tag_for_tool( tool ) } + 'tag_val': ','.join( [ 'galaxy', tag_for_tool( tool ) ] ) } # Pass on to regular question method return self.biostar_question_redirect( trans, payload ) 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