Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FSL
conda
installer
Commits
20bd0f07
Commit
20bd0f07
authored
May 23, 2022
by
Paul McCarthy
🚵
Browse files
RF: Make sure we don't get an empty entry at the end
parent
1ee27ec9
Changes
1
Hide whitespace changes
Inline
Side-by-side
fslinstaller.py
View file @
20bd0f07
...
...
@@ -386,7 +386,7 @@ class Context(object):
'list from {}!'
.
format
(
FSL_DEV_RELEASES
))
with
open
(
'devreleases.txt'
,
'rt'
)
as
f
:
urls
=
f
.
read
lines
(
)
urls
=
f
.
read
().
strip
().
split
(
'
\n
'
)
urls
=
[
l
.
strip
()
for
l
in
urls
]
for
url
in
urls
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment