Skip to content

Commit 7225913

Browse files
committed
[processing] remove undefined variable (fix #11118)
1 parent df7c965 commit 7225913

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/plugins/processing/algs/grass/GrassUtils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,6 @@ def checkGrassIsInstalled(ignorePreviousState=False):
385385
running GRASS algorithms.'
386386
except:
387387
return 'Error while checking GRASS installation. GRASS might not \
388-
be correctly configured.\n' + s
388+
be correctly configured.\n'
389389

390390
GrassUtils.isGrassInstalled = True

python/plugins/processing/algs/grass7/Grass7Utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def checkGrass7IsInstalled(ignorePreviousState=False):
387387
running GRASS GIS 7 algorithms.'
388388
except:
389389
return 'Error while checking GRASS GIS 7 installation. GRASS GIS 7 might not \
390-
be correctly configured.\n' + s
390+
be correctly configured.\n'
391391

392392
Grass7Utils.isGrass7Installed = True
393393

0 commit comments

Comments
 (0)