mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-10 06:03:38 +00:00
diff: remove surrogates before output, fixes #7535
This commit is contained in:
parent
a0bc7b9434
commit
c587e88830
1 changed files with 1 additions and 1 deletions
|
@ -1154,7 +1154,7 @@ class Archiver:
|
|||
diffs = sorted(diffs)
|
||||
|
||||
for path, diff in diffs:
|
||||
print_output(diff, path)
|
||||
print_output(diff, remove_surrogates(path))
|
||||
|
||||
for pattern in matcher.get_unmatched_include_patterns():
|
||||
self.print_warning("Include pattern '%s' never matched.", pattern)
|
||||
|
|
Loading…
Add table
Reference in a new issue