400 html += '<br />\n' |
400 html += '<br />\n' |
401 for f in entry["file_dels"].strip().split(", "): |
401 for f in entry["file_dels"].strip().split(", "): |
402 html += self.tr('Deleted {0}<br />\n')\ |
402 html += self.tr('Deleted {0}<br />\n')\ |
403 .format(Utilities.html_encode(f)) |
403 .format(Utilities.html_encode(f)) |
404 |
404 |
405 html += '</p>{0}<br/>\n'.format(80 * "=") |
405 html += '</p>{0}<br/>\n'.format(60 * "=") |
406 |
406 |
407 self.contents.setHtml(html) |
407 self.contents.setHtml(html) |
408 tc = self.contents.textCursor() |
408 tc = self.contents.textCursor() |
409 tc.movePosition(QTextCursor.Start) |
409 tc.movePosition(QTextCursor.Start) |
410 self.contents.setTextCursor(tc) |
410 self.contents.setTextCursor(tc) |