From 77231bbb29fda09e5d506616df765fbab91e5442 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauld.mccarthy@gmail.com> Date: Fri, 17 Feb 2017 16:41:32 +0000 Subject: [PATCH] Fix to last commit --- fsl/data/gifti.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsl/data/gifti.py b/fsl/data/gifti.py index 7f1cd7f12..bd00e0a92 100644 --- a/fsl/data/gifti.py +++ b/fsl/data/gifti.py @@ -189,7 +189,7 @@ def loadGiftiVertexData(filename): # DataArray goes against the GIFTI spec, # but hey, it happens. if len(gimg.darrays) == 1: - return gimg.darrays[0].data + return gimg, gimg.darrays[0].data # Otherwise extract and concatenate # multiple 1-dimensional arrays -- GitLab