From 7b96ccfe101e46fa434e8c3a4c7534b093281c09 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 15 Nov 2019 02:33:51 -0400 Subject: [PATCH] Add missing config file load cache line Signed-off-by: Roberto Rosario --- mayan/apps/smart_settings/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mayan/apps/smart_settings/utils.py b/mayan/apps/smart_settings/utils.py index efe5ee820b..90fcdb66eb 100644 --- a/mayan/apps/smart_settings/utils.py +++ b/mayan/apps/smart_settings/utils.py @@ -72,6 +72,7 @@ class SettingNamespaceSingleton(object): ) file_data = self.load_config_file(filepath=filepath) + self._cache_file_data = file_data try: return file_data[name]