fix error string

This commit is contained in:
holger krekel
2024-03-28 12:17:33 +01:00
parent 0938b3a1b5
commit d51a60be57

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 {}