mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
check: do not stumble over invalid item key, fixes #4845
The code used for error reporting crashes due to an invalid utf-8 sequence. Use errors='replace' to never crash there. Errors are expected in input data when borg check is run.
This commit is contained in:
parent
0b8c9b236e
commit
046dea8643
1 changed files with 1 additions and 1 deletions
|
@ -1726,7 +1726,7 @@ def report(msg, chunk_id, chunk_no):
|
||||||
logger.error(msg)
|
logger.error(msg)
|
||||||
|
|
||||||
def list_keys_safe(keys):
|
def list_keys_safe(keys):
|
||||||
return ', '.join((k.decode() if isinstance(k, bytes) else str(k) for k in keys))
|
return ', '.join((k.decode(errors='replace') if isinstance(k, bytes) else str(k) for k in keys))
|
||||||
|
|
||||||
def valid_item(obj):
|
def valid_item(obj):
|
||||||
if not isinstance(obj, StableDict):
|
if not isinstance(obj, StableDict):
|
||||||
|
|
Loading…
Reference in a new issue