From 550f522e9db951392224847a5e34910ecb444144 Mon Sep 17 00:00:00 2001 From: David Fernandez Alcoba Date: Fri, 29 Aug 2025 13:00:23 +0200 Subject: [PATCH] Fix broken start when UID does not exist --- radicale/pathutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/pathutils.py b/radicale/pathutils.py index b204635a..8ee25b4e 100644 --- a/radicale/pathutils.py +++ b/radicale/pathutils.py @@ -327,6 +327,6 @@ def path_permissions_as_string(path): try: pp = path_permissions(path) s = "path=%r owner=%s group=%s mode=%o" % (path, pp[0], pp[1], pp[2]) - except NotImplementedError: + except (KeyError, NotImplementedError): s = "path=%r owner=UNKNOWN(unsupported on this system)" % (path) return s