Skip to content
Snippets Groups Projects
Commit e7c48926 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

BF: Minor fixes

parent 06a86eb7
No related branches found
No related tags found
No related merge requests found
...@@ -156,10 +156,10 @@ class SubmitParams(object): ...@@ -156,10 +156,10 @@ class SubmitParams(object):
(set to None to include everything) (set to None to include everything)
:return: the group the arguments got added to :return: the group the arguments got added to
""" """
from fsl.utils.run import runfsl from fsl.utils.run import runfsl, FSLNotPresent
try: try:
fsl_sub_run, _ = runfsl('fsl_sub', exitcode=True) fsl_sub_run, _ = runfsl('fsl_sub', exitcode=True)
except FileNotFoundError: except (FileNotFoundError, FSLNotPresent):
warnings.warn('fsl_sub was not found') warnings.warn('fsl_sub was not found')
return return
doc_lines = fsl_sub_run.splitlines() doc_lines = fsl_sub_run.splitlines()
...@@ -183,7 +183,7 @@ class SubmitParams(object): ...@@ -183,7 +183,7 @@ class SubmitParams(object):
break break
elif line.strip().startswith(flag): elif line.strip().startswith(flag):
explanation = [line[nspaces:].strip()] explanation = [line[nspaces:].strip()]
if len(explanation) == 0: if (explanation is None) or (len(explanation) == 0):
return 'documentation not found' return 'documentation not found'
return ' '.join(explanation) return ' '.join(explanation)
......
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