Skip to content

Commit 8b3762c

Browse files
Jon McCormacknyalldawson
authored andcommitted
fix processing plugin error when grass7 disabled
(cherry picked from commit 9493f55)
1 parent 7218cf5 commit 8b3762c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def supportedOutputRasterLayerExtensions(self):
157157
return Grass7Utils.getSupportedOutputRasterExtensions()
158158

159159
def canBeActivated(self):
160-
return not bool(Grass7Utils.checkGrass7IsInstalled())
160+
return not bool(Grass7Utils.checkGrassIsInstalled())
161161

162162
def tr(self, string, context=''):
163163
if context == '':

0 commit comments

Comments
 (0)