File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
python/plugins/processing/algs/grass7 Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -422,6 +422,8 @@ def processAlgorithm(self, progress):
422
422
if ProcessingConfig .getSetting (Grass7Utils .GRASS_LOG_COMMANDS ):
423
423
ProcessingLog .addToLog (ProcessingLog .LOG_INFO , loglines )
424
424
425
+ Grass7Utils .executeGrass7 (commands , progress , outputCommands )
426
+
425
427
for out in self .outputs :
426
428
if isinstance (out , OutputHTML ):
427
429
with open (self .getOutputFromName ("rawoutput" ).value ) as f :
@@ -511,14 +513,7 @@ def commandLineName(self):
511
513
def checkBeforeOpeningParametersDialog (self ):
512
514
msg = Grass7Utils .checkGrass7IsInstalled ()
513
515
if msg is not None :
514
- html = self .tr (
515
- '<p>This algorithm requires GRASS GIS 7 to be run. '
516
- 'Unfortunately, it seems that GRASS GIS 7 is not installed in '
517
- 'your system, or it is not correctly configured to be used '
518
- 'from QGIS</p>'
519
- '<p><a href="http://docs.qgis.org/testing/en/docs/user_manual/processing/3rdParty.html">Click here</a> '
520
- 'to know more about how to install and configure GRASS GIS 7 to be used with QGIS</p>' ) # FIXME update URL or page
521
- return html
516
+ return msg
522
517
523
518
def checkParameterValuesBeforeExecuting (self ):
524
519
name = self .commandLineName ().replace ('.' , '_' )[len ('grass7:' ):]
You can’t perform that action at this time.
0 commit comments