From 6916d1b3bc8d25d9e6f6254459abd3e21f4dc1e3 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 25 Dec 2020 02:20:28 +0100 Subject: [PATCH] use strerror(e.errno) to get verbose error msg otherwise it is just like: [Errno NN] Exxxxx --- src/borg/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archive.py b/src/borg/archive.py index 9ae4358b9..612f7cab0 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -784,7 +784,7 @@ Utilization of max. archive size: {csize_max:.0%} # generic handler # EACCES: permission denied to set this specific xattr (this may happen related to security.* keys) # EPERM: operation not permitted - err_str = str(e) + err_str = os.strerror(e.errno) logger.warning(msg_format % err_str) set_ec(EXIT_WARNING) # bsdflags include the immutable flag and need to be set last: