commit/galaxy-central: fubar: Patch for missing options in FromDataTableOutputActionOption when these are used in an output filter
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/009088d5e76f/ Changeset: 009088d5e76f User: fubar Date: 2013-08-10 03:28:28 Summary: Patch for missing options in FromDataTableOutputActionOption when these are used in an output filter Affected #: 1 file diff -r 31d2d58ebf102f87c21f170b16452d06fd510a14 -r 009088d5e76fb00794da78dc0ee3cdaa8524b7d8 lib/galaxy/tools/parameters/output.py --- a/lib/galaxy/tools/parameters/output.py +++ b/lib/galaxy/tools/parameters/output.py @@ -217,7 +217,10 @@ else: self.missing_tool_data_table_name = self.name def get_value( self, other_values ): - options = self.options + try: + options = self.options + except: + options = [] for filter in self.filters: options = filter.filter_options( options, other_values ) try: 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