Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hexylena committed Oct 20, 2015
1 parent e879360 commit e0a6f14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo_ext/galaxy/tools/loader_directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def is_tool_load_error(obj):
def __looks_like_a_tool(path):
with open(path, "r") as f:
start_contents = f.read(5 * 1024)
if "<tool" in start_contents:
if "<tool " in start_contents:
return True
return False

Expand Down

0 comments on commit e0a6f14

Please sign in to comment.