Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] remove undefined variable (fix #11118)
  • Loading branch information
alexbruy committed Oct 2, 2014
1 parent df7c965 commit 7225913
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass/GrassUtils.py
Expand Up @@ -385,6 +385,6 @@ def checkGrassIsInstalled(ignorePreviousState=False):
running GRASS algorithms.'
except:
return 'Error while checking GRASS installation. GRASS might not \
be correctly configured.\n' + s
be correctly configured.\n'

GrassUtils.isGrassInstalled = True
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Utils.py
Expand Up @@ -387,7 +387,7 @@ def checkGrass7IsInstalled(ignorePreviousState=False):
running GRASS GIS 7 algorithms.'
except:
return 'Error while checking GRASS GIS 7 installation. GRASS GIS 7 might not \
be correctly configured.\n' + s
be correctly configured.\n'

Grass7Utils.isGrass7Installed = True

0 comments on commit 7225913

Please sign in to comment.