From c640087498f891dd51d74dac9912f9fbd5d8a7b3 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Thu, 28 Mar 2024 12:17:33 +0100 Subject: [PATCH] fix error string --- chatmaild/src/chatmaild/filedict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatmaild/src/chatmaild/filedict.py b/chatmaild/src/chatmaild/filedict.py index 02b38735..5be5830f 100644 --- a/chatmaild/src/chatmaild/filedict.py +++ b/chatmaild/src/chatmaild/filedict.py @@ -31,5 +31,5 @@ def read(self): except FileNotFoundError: return {} except Exception: - logging.warning("corrupt marshal data at: %r", self.path) + logging.warning("corrupt serialization state at: %r", self.path) return {}