Correctly indent first line of multiline entry

This commit is contained in:
Aaron Lichtman 2019-11-08 01:49:16 +01:00
parent acc754e337
commit 99426cecd2
No known key found for this signature in database
GPG key ID: 22368077DE9F9903

View file

@ -256,6 +256,7 @@ def highlight_tags_with_background_color(entry, text, color, bold=False):
else:
# Otherwise just append it.
final_text += " " + colorized_piece
final_text = final_text.lstrip()
previous_piece = piece