Skip to content

Commit

Permalink
Fix for data_fetch sniffing.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Mar 8, 2018
1 parent d651348 commit bca2c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/data_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _resolve_src(item):
line_count, converted_path = sniff.sep2tabs(path, in_place=in_place, tmp_dir=".")

if requested_ext == 'auto':
ext = sniff.guess_ext(path, registry.sniff_order)
ext = sniff.guess_ext(converted_path or path, registry.sniff_order)
else:
ext = requested_ext

Expand Down

0 comments on commit bca2c3c

Please sign in to comment.