Skip to content

Commit 7b61e52

Browse files
committed
[processing] fix html in error handler text
1 parent 9416aca commit 7b61e52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/core/GeoAlgorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def execute(self, progress):
149149
self.runPreExecutionScript(progress)
150150
self.processAlgorithm(progress)
151151
self.convertUnsupportedFormats(progress)
152-
self.runPostExecutionScript(progress)
152+
self.runPostExecutionScript(progress)
153153
except GeoAlgorithmExecutionException, gaee:
154154
ProcessingLog.addToLog(ProcessingLog.LOG_ERROR, gaee.msg)
155155
raise gaee
@@ -423,7 +423,7 @@ def getPostProcessingErrorMessage(self, wrongLayers):
423423

424424
html ="<p>Oooops! The following output layers could not be open</p><ul>\n"
425425
for layer in wrongLayers:
426-
html += '<li>' + layer.description + ': <font size=3 face="Courier New" color="ff0000">' + layer.value + "</font></li>\n"
426+
html += '<li>' + layer.description + ': <font size=3 face="Courier New" color="#ff0000">' + layer.value + "</font></li>\n"
427427
html +="</ul><p>The above files could not be opened, which probably indicates that they were not correctly produced by the executed algorithm</p>"
428428
html +="<p>Checking the log information might help you see why those layers were not created as expected</p>"
429429
return html

0 commit comments

Comments
 (0)