Revert "[processing] Extra check to ensure GRASS folder setting not already None"

This reverts commit 36a820e51657bf0c3069e1fd287d6b452a3cd1e0.
This commit is contained in:
Larry Shaffer 2016-04-25 21:27:45 -06:00
parent 36a820e516
commit b3a0d9d146
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ class GrassUtils:
return ''
folder = ProcessingConfig.getSetting(GrassUtils.GRASS_FOLDER) or ''
if folder and not os.path.exists(folder):
if not os.path.exists(folder):
folder = None
if folder is None:
if isWindows():
@ -111,7 +111,7 @@ class GrassUtils:
@staticmethod
def grassWinShell():
folder = ProcessingConfig.getSetting(GrassUtils.GRASS_WIN_SHELL) or ''
if folder and not os.path.exists(folder):
if not os.path.exists(folder):
folder = None
if folder is None:
folder = os.path.dirname(unicode(QgsApplication.prefixPath()))

View File

@ -84,7 +84,7 @@ class Grass7Utils:
return ''
folder = ProcessingConfig.getSetting(Grass7Utils.GRASS_FOLDER) or ''
if folder and not os.path.exists(folder):
if not os.path.exists(folder):
folder = None
if folder is None:
if isWindows():