]> granicus.if.org Git - python/commitdiff
SF bug 1054821: difflib HtmlDiff() extra space on inserted 1 character lines
authorTim Peters <tim.peters@gmail.com>
Fri, 12 Nov 2004 16:12:15 +0000 (16:12 +0000)
committerTim Peters <tim.peters@gmail.com>
Fri, 12 Nov 2004 16:12:15 +0000 (16:12 +0000)
Simple correction from the code's author (Dan Gass).

Lib/difflib.py

index 124ae9061adbfd5c4f08c140a517dda99b6f1a51..590785f391d8387f048f158ff544f81f27fb736d 100644 (file)
@@ -1367,8 +1367,8 @@ def _mdiff(fromlines, tolines, context=None, linejunk=None,
             text = lines.pop(0)[2:]
             # if line of text is just a newline, insert a space so there is
             # something for the user to highlight and see.
-            if len(text) <= 1:
-                text = ' '+text
+            if not text:
+                text = ' '
             # insert marks that won't be noticed by an xml/html escaper.
             text = '\0' + format_key + text + '\1'
         # Return line of text, first allow user's line formatter to do it's