Skip to content

Commit 3bb677e

Browse files
committed
[processing] fixed message to indicate unconfigured GRASS provider
It now displays the same message for GRASS 6 than for GRASS 7
1 parent ea712c6 commit 3bb677e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

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

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -489,13 +489,7 @@ def commandLineName(self):
489489
def checkBeforeOpeningParametersDialog(self):
490490
msg = GrassUtils.checkGrassIsInstalled()
491491
if msg is not None:
492-
html = self.tr(
493-
'<p>This algorithm requires GRASS to be run. Unfortunately, '
494-
'it seems that GRASS is not installed in your system, or it '
495-
'is not correctly configured to be used from QGIS</p>'
496-
'<p><a href="http://docs.qgis.org/testing/en/docs/user_manual/processing/3rdParty.html">Click here</a> '
497-
'to know more about how to install and configure GRASS to be used with QGIS</p>')
498-
return html
492+
return msg
499493

500494
def checkParameterValuesBeforeExecuting(self):
501495
name = self.commandLineName().replace('.', '_')[len('grass:'):]

0 commit comments

Comments
 (0)