From eedc4d198cefdb34e432667de6c41acd789852ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondr=CC=8Cej=20Ny=CC=81vlt?= Date: Fri, 25 Aug 2023 22:46:16 +0200 Subject: [PATCH] Fix typo --- processor/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/processor/app.py b/processor/app.py index fae924c..6c30d67 100644 --- a/processor/app.py +++ b/processor/app.py @@ -14,7 +14,7 @@ from diff_match_patch import diff_match_patch class DiffThing(diff_match_patch): def diff_html(self, diffs): """Like diff_prettyHtml, but without inline style attributes - (makes it easier to style it with stylesheets). + (makes it easier to style it with ). """ html = [] for op, data in diffs: @@ -27,7 +27,7 @@ class DiffThing(diff_match_patch): if op == self.DIFF_INSERT: html.append("%s" % text) elif op == self.DIFF_DELETE: - html.append('%s' % text) + html.append("%s" % text) elif op == self.DIFF_EQUAL: html.append("%s" % text) return "".join(html)