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