Fix rendering of binary files
This commit is contained in:
parent
a65c807a4a
commit
b663160bc2
@ -151,9 +151,10 @@ def binary_lines(path, other_path, columns, margin_size):
|
|||||||
yield filler + fl(other_path, added_format)
|
yield filler + fl(other_path, added_format)
|
||||||
elif other_path is None:
|
elif other_path is None:
|
||||||
filler = render_diff_line('', '', 'filler', margin_size, available_cols)
|
filler = render_diff_line('', '', 'filler', margin_size, available_cols)
|
||||||
yield fl(other_path, added_format) + filler
|
yield fl(path, removed_format) + filler
|
||||||
else:
|
else:
|
||||||
yield fl(path, removed_format) + fl(other_path, added_format)
|
yield fl(path, removed_format) + fl(other_path, added_format)
|
||||||
|
yield ''
|
||||||
|
|
||||||
|
|
||||||
def split_to_size(line, width):
|
def split_to_size(line, width):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user