Fix rendering of binary files
This commit is contained in:
parent
a65c807a4a
commit
b663160bc2
1 changed files with 2 additions and 1 deletions
|
|
@ -151,9 +151,10 @@ def fl(path, fmt):
|
|||
yield filler + fl(other_path, added_format)
|
||||
elif other_path is None:
|
||||
filler = render_diff_line('', '', 'filler', margin_size, available_cols)
|
||||
yield fl(other_path, added_format) + filler
|
||||
yield fl(path, removed_format) + filler
|
||||
else:
|
||||
yield fl(path, removed_format) + fl(other_path, added_format)
|
||||
yield ''
|
||||
|
||||
|
||||
def split_to_size(line, width):
|
||||
|
|
|
|||
Loading…
Reference in a new issue