From 1ced27eb359401535d1132bc784c480c7aa92417 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 6 Jul 2018 16:12:42 +0100 Subject: [PATCH] BF: Was always LOADing prefixed files. --- fsl/wrappers/wrapperutils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fsl/wrappers/wrapperutils.py b/fsl/wrappers/wrapperutils.py index 570a77d02..e63baf3e3 100644 --- a/fsl/wrappers/wrapperutils.py +++ b/fsl/wrappers/wrapperutils.py @@ -710,13 +710,13 @@ class _FileOrThing(object): # starts with it will be # loaded. if prefix is LOAD: - prefix = random.sample(string.ascii_letters, 10) - prefix = ''.join(prefix) + prefix = random.sample(string.ascii_letters, 10) + prefix = ''.join(prefix) + prefixedFiles[prefix] = self.__outprefix realPrefix = prefix prefix = op.basename(prefix) allargs[self.__outprefix] = op.join(workdir, prefix) - prefixedFiles[prefix] = self.__outprefix if len(self.__things) > 0: things = self.__things else: things = allargs.keys() -- GitLab