We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80dc723 commit 11b4751Copy full SHA for 11b4751
python/plugins/processing/algs/r/RAlgorithm.py
@@ -239,7 +239,7 @@ def processAlgorithm(self, progress):
239
if self.showPlots:
240
htmlfilename = self.getOutputValue(RAlgorithm.RPLOTS)
241
f = open(htmlfilename, 'w')
242
- f.write('<img src="' + self.plotsFilename + '"/>')
+ f.write('<html><img src="' + self.plotsFilename + '"/></html>')
243
f.close()
244
if self.showConsoleOutput:
245
htmlfilename = self.getOutputValue(RAlgorithm.R_CONSOLE_OUTPUT)
0 commit comments