Skip to content
Snippets Groups Projects
Commit 4ddea943 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Don't explicitly use u"unicode strings" in Python 3.x.

parent fdad13c3
No related branches found
No related tags found
No related merge requests found
......@@ -418,11 +418,11 @@ class HTMLSideBySidePresenter:
self.spl_print_func('<tr class="diffhunk">')
self.spl_print_func(
u'<td colspan="2">Offset %d, %d lines modified</td>'
'<td colspan="2">Offset %d, %d lines modified</td>'
% (hunk_off1, hunk_size1)
)
self.spl_print_func(
u'<td colspan="2">Offset %d, %d lines modified</td>'
'<td colspan="2">Offset %d, %d lines modified</td>'
% (hunk_off2, hunk_size2)
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment