Skip to content

Commit

Permalink
[processing] Extra check to ensure GRASS folder setting not already None
Browse files Browse the repository at this point in the history
- Update to 5131e93; not sure why ProcessingConfig.getSetting returning
  None sets folder = None instead of '' (on the previous line on Win)
  • Loading branch information
dakcarto committed Apr 26, 2016
1 parent 4c02997 commit 36a820e
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 not os.path.exists(folder):
if folder and 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 not os.path.exists(folder):
if folder and 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 not os.path.exists(folder):
if folder and not os.path.exists(folder):
folder = None
if folder is None:
if isWindows():
Expand Down

0 comments on commit 36a820e

Please sign in to comment.