Skip to content

Commit

Permalink
Remove unnecessary slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 4, 2016
1 parent 1c74083 commit 7456b1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/toolbox/base.py
Expand Up @@ -994,7 +994,7 @@ def _apply_filter( filter_item, filter_list ):
if not filter_method( context, filter_item ):
return False
except Exception as e:
raise MessageException( "Toolbox filter exception from \'%s\': %s." % ( filter_method.__name__, e ) )
raise MessageException( "Toolbox filter exception from '%s': %s." % ( filter_method.__name__, e ) )
return True
if item_type == panel_item_types.TOOL:
if _apply_filter( item, filters[ 'tool' ] ):
Expand Down

0 comments on commit 7456b1f

Please sign in to comment.