daca2-report: insert spaces between 'Most recently updated' items

This commit is contained in:
Daniel Marjamäki 2013-12-15 12:33:06 +01:00
parent 7938692b01
commit 31368d946b
1 changed files with 2 additions and 2 deletions

View File

@ -138,8 +138,8 @@ if lastupdate:
mainpage.write('<p>Last update: ' + lastupdate + '</p>')
allrecent = ''
for r in recent:
allrecent = allrecent + '<a href="daca2-' + r + '.html">' + r + '</a>'
mainpage.write('<p>Most recently updated: ' + allrecent + '</p>')
allrecent = allrecent + ' <a href="daca2-' + r + '.html">' + r + '</a>'
mainpage.write('<p>Most recently updated:' + allrecent + '</p>')
mainpage.write('</body>\n')
mainpage.write('</html>\n')