Skip to content
Snippets Groups Projects
Commit 15e66320 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

BUG: default to run fsl_sub in full current environment

parent db9a3e6d
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ class SubmitParams(object): ...@@ -124,7 +124,7 @@ class SubmitParams(object):
If not set explicitly by the user don't alter the environment in which the script will be submitted If not set explicitly by the user don't alter the environment in which the script will be submitted
""" """
if self.env is None: if self.env is None:
self.env = {} self.env = dict(os.environ)
def as_flags(self, ): def as_flags(self, ):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment