Skip to content

Commit

Permalink
Bugfix: Skip extra wrapping around template-style macros.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jan 15, 2015
1 parent bb3a003 commit 4cd434b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2575,7 +2575,7 @@ def __sanitize_param_dict( self, param_dict ):
Note: this method follows the style of the similar populate calls, in that param_dict is modified in-place.
"""
# chromInfo is a filename, do not sanitize it.
skip = [ 'chromInfo' ]
skip = [ 'chromInfo' ] + self.template_macro_params.keys()
if not self.options or self.options.sanitize:
for key, value in param_dict.items():
if key not in skip:
Expand Down

0 comments on commit 4cd434b

Please sign in to comment.