commit/galaxy-central: dannon: Fix for rendering workflow tooltips when tool.help is nonexistent.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/5013377e0bf7/ changeset: 5013377e0bf7 user: dannon date: 2012-11-13 18:26:55 summary: Fix for rendering workflow tooltips when tool.help is nonexistent. affected #: 1 file diff -r d3ac39a6f8d7a5f95ffabb4ba8f8a846b17ac15a -r 5013377e0bf7a656ea593098f1d1b38f3d6928c6 lib/galaxy/workflow/modules.py --- a/lib/galaxy/workflow/modules.py +++ b/lib/galaxy/workflow/modules.py @@ -255,7 +255,10 @@ def get_errors( self ): return self.errors def get_tooltip( self, static_path='' ): - return self.tool.help.render( static_path=static_path ) + if self.tool.help: + return self.tool.help.render( static_path=static_path ) + else: + return None def get_data_inputs( self ): data_inputs = [] def callback( input, value, prefixed_name, prefixed_label ): 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)
-
Bitbucket