Skip to content

Commit

Permalink
[processing] Add some newlines to the output of basic stats
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Feb 21, 2016
1 parent 6a8b407 commit f699564
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions python/plugins/processing/algs/qgis/BasicStatisticsNumbers.py
Expand Up @@ -186,10 +186,10 @@ def processAlgorithm(self, progress):

def createHTML(self, outputFile, algData):
f = codecs.open(outputFile, 'w', encoding='utf-8')
f.write('<html><head>')
f.write('<html><head>\n')
f.write('<meta http-equiv="Content-Type" content="text/html; \
charset=utf-8" /></head><body>')
charset=utf-8" /></head><body>\n')
for s in algData:
f.write('<p>' + unicode(s) + '</p>')
f.write('</body></html>')
f.write('<p>' + unicode(s) + '</p>\n')
f.write('</body></html>\n')
f.close()
6 changes: 3 additions & 3 deletions python/plugins/processing/algs/qgis/BasicStatisticsStrings.py
Expand Up @@ -145,10 +145,10 @@ def processAlgorithm(self, progress):

def createHTML(self, outputFile, algData):
f = codecs.open(outputFile, 'w', encoding='utf-8')
f.write('<html><head>')
f.write('<html><head>\n')
f.write('<meta http-equiv="Content-Type" content="text/html; \
charset=utf-8" /></head><body>')
charset=utf-8" /></head><body>\n')
for s in algData:
f.write('<p>' + unicode(s) + '</p>')
f.write('<p>' + unicode(s) + '</p>\n')
f.write('</body></html>')
f.close()

0 comments on commit f699564

Please sign in to comment.