From 6c76a9a8da9a181ddc24207b7afbb62bec47764f Mon Sep 17 00:00:00 2001 From: Andrei Date: Sat, 6 May 2017 18:00:17 -0700 Subject: [PATCH] Create data if loaded object is empty --- disco/bot/storage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/disco/bot/storage.py b/disco/bot/storage.py index 5b03a07..de81553 100644 --- a/disco/bot/storage.py +++ b/disco/bot/storage.py @@ -49,6 +49,8 @@ class Storage(object): if os.path.exists(self._path): with open(self._path, 'r') as f: self._data = Serializer.loads(self._serializer, f.read()) + if not self._data: + self._data = {} def __getitem__(self, key): if key not in self._data: