Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
d423d2e9
Commit
d423d2e9
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Add back .gii as a valid gifti surface extension, because wx doesn't support
double-barrelled file extensions.
parent
15618c55
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/data/gifti.py
+5
-3
5 additions, 3 deletions
fsl/data/gifti.py
with
5 additions
and
3 deletions
fsl/data/gifti.py
+
5
−
3
View file @
d423d2e9
...
@@ -35,14 +35,16 @@ import fsl.data.constants as constants
...
@@ -35,14 +35,16 @@ import fsl.data.constants as constants
import
fsl.data.mesh
as
fslmesh
import
fsl.data.mesh
as
fslmesh
# We include .gii here because lots of things
ALLOWED_EXTENSIONS
=
[
'
.surf.gii
'
]
# don't understand double-barrelled file
# extensions (e.g. the wxPython open file dialog).
ALLOWED_EXTENSIONS
=
[
'
.surf.gii
'
,
'
.gii
'
]
"""
List of file extensions that a file containing Gifti surface data
"""
List of file extensions that a file containing Gifti surface data
is expected to have.
is expected to have.
"""
"""
EXTENSION_DESCRIPTIONS
=
[
'
GIFTI surface file
'
]
EXTENSION_DESCRIPTIONS
=
[
'
GIFTI surface
file
'
,
'
GIFTI surface
file
'
]
"""
A description for each of the :data:`ALLOWED_EXTENSIONS`.
"""
"""
A description for each of the :data:`ALLOWED_EXTENSIONS`.
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment