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

FSLDIR is set to None if it is invalid

parent f92712bf
No related branches found
No related tags found
No related merge requests found
...@@ -22,6 +22,7 @@ away various platform differences: ...@@ -22,6 +22,7 @@ away various platform differences:
import logging import logging
import os import os
import os.path as op
import sys import sys
import importlib import importlib
...@@ -144,7 +145,7 @@ class Platform(notifier.Notifier): ...@@ -144,7 +145,7 @@ class Platform(notifier.Notifier):
self.WX_GTK = WX_GTK self.WX_GTK = WX_GTK
self.isWidgetAlive = isWidgetAlive self.isWidgetAlive = isWidgetAlive
self.__fsldir = os.environ.get('FSLDIR', None) self.fsldir = os.environ.get('FSLDIR', None)
self.__inSSHSession = False self.__inSSHSession = False
self.__glVersion = None self.__glVersion = None
self.__glRenderer = None self.__glRenderer = None
...@@ -279,8 +280,17 @@ class Platform(notifier.Notifier): ...@@ -279,8 +280,17 @@ class Platform(notifier.Notifier):
"""Changes the value of the :attr:`fsldir` property, and notifies any """Changes the value of the :attr:`fsldir` property, and notifies any
registered listeners. registered listeners.
""" """
value = value.strip()
if value == '': value = None
elif not op.exists(value): value = None
elif not op.isdir(value): value = None
self.__fsldir = value self.__fsldir = value
os.environ['FSLDIR'] = value
if value is not None:
os.environ['FSLDIR'] = value
self.notify() self.notify()
......
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