Skip to content

Commit

Permalink
Split by space instead of newline
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Sep 18, 2017
1 parent 0df4db5 commit 2bcd46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/parameters/grouping.py
Expand Up @@ -323,7 +323,7 @@ def start_of_url(content):
return looks_like_url

if start_of_url(url_paste):
url_paste = url_paste.replace('\r', '').replace(' ', '\n').split('\n')
url_paste = url_paste.replace('\r', '').replace('\n', ' ').split()
for line in url_paste:
line = line.strip()
if line:
Expand Down

0 comments on commit 2bcd46c

Please sign in to comment.