From 8e79a7da635e4a9ed028571c3b7e82d3c86fef24 Mon Sep 17 00:00:00 2001 From: shortcutme Date: Fri, 7 Feb 2020 16:37:37 +0100 Subject: [PATCH] Fix incomplete loading of dbschema.json --- src/Site/SiteStorage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Site/SiteStorage.py b/src/Site/SiteStorage.py index 6e5f3541..c12a80b0 100644 --- a/src/Site/SiteStorage.py +++ b/src/Site/SiteStorage.py @@ -67,6 +67,7 @@ class SiteStorage(object): def getDbSchema(self): try: + self.site.needFile("dbschema.json") schema = self.loadJson("dbschema.json") except Exception as err: raise Exception("dbschema.json is not a valid JSON: %s" % err)