Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] Fix error on win when grass path isn't set correctly
  • Loading branch information
nyalldawson committed Jan 24, 2018
1 parent 2013725 commit 4e6aa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Utils.py
Expand Up @@ -457,7 +457,7 @@ def checkGrassIsInstalled(ignorePreviousState=False):
'The specified GRASS 7 folder "{}" does not contain '
'a valid set of GRASS 7 modules.\nPlease, go to the '
'Processing settings dialog, and check that the '
'GRASS 7\nfolder is correctly configured'.format(os.path.join(path, 'bin')))
'GRASS 7\nfolder is correctly configured'.format(os.path.join(Grass7Utils.path, 'bin')))
Grass7Utils.isGrassInstalled = True
return
# Return error messages
Expand Down

0 comments on commit 4e6aa3c

Please sign in to comment.