Skip to content

Commit

Permalink
Revert "[processing] Extra check to ensure GRASS folder setting not a…
Browse files Browse the repository at this point in the history
…lready None"

This reverts commit 36a820e.
  • Loading branch information
dakcarto committed Apr 26, 2016
1 parent 36a820e commit b3a0d9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/grass/GrassUtils.py
Expand Up @@ -87,7 +87,7 @@ def grassPath():
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():
Expand All @@ -111,7 +111,7 @@ def grassPath():
@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()))
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Utils.py
Expand Up @@ -84,7 +84,7 @@ def grassPath():
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():
Expand Down

0 comments on commit b3a0d9d

Please sign in to comment.