fix error string

This commit is contained in:
holger krekel
2024-03-28 12:17:33 +01:00
parent 2089f3ab58
commit c640087498

View File

@@ -31,5 +31,5 @@ class FileDict:
except FileNotFoundError: except FileNotFoundError:
return {} return {}
except Exception: except Exception:
logging.warning("corrupt marshal data at: %r", self.path) logging.warning("corrupt serialization state at: %r", self.path)
return {} return {}