Skip to content

Commit

Permalink
Use as instead of comma
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 4, 2016
1 parent d3a5c4c commit 300c961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/toolbox/base.py
Expand Up @@ -993,7 +993,7 @@ def _apply_filter( filter_item, filter_list ):
try:
if not filter_method( context, filter_item ):
return False
except Exception, e:
except Exception as e:
raise MessageException( "Toolbox filter exception from \'%s\': %s." % ( filter_method.__name__, e ) )
return True
if item_type == panel_item_types.TOOL:
Expand Down

0 comments on commit 300c961

Please sign in to comment.