Merge pull request #1710 from mach0/master

fix typo in processing description
This commit is contained in:
alexbruy 2014-12-01 18:53:41 +02:00
commit 974511f4e3

View File

@ -411,8 +411,8 @@ class RAlgorithm(GeoAlgorithm):
def checkBeforeOpeningParametersDialog(self): def checkBeforeOpeningParametersDialog(self):
msg = RUtils.checkRIsInstalled() msg = RUtils.checkRIsInstalled()
if msg is not None: if msg is not None:
html = '<p>This algorithm requires R to be run.Unfortunately, \ html = '<p>This algorithm requires R to be run. Unfortunately \
it seems that R is not installed in your system, or it \ it seems that R is not installed in your system or it \
is not correctly configured to be used from QGIS</p>' is not correctly configured to be used from QGIS</p>'
html += '<p><a href= "http://docs.qgis.org/2.0/en/docs/user_manual/processing/3rdParty.html">Click here</a> to know more about how to install and configure R to be used with QGIS</p>' html += '<p><a href= "http://docs.qgis.org/2.0/en/docs/user_manual/processing/3rdParty.html">Click here</a> to know more about how to install and configure R to be used with QGIS</p>'
return html return html