From bafb713e997fcd9a761220cab64c11a8577b7176 Mon Sep 17 00:00:00 2001 From: Morg42 <43153739+Morg42@users.noreply.github.com> Date: Fri, 26 Jul 2024 22:58:47 +0200 Subject: [PATCH] core: rename templates_dir var --- lib/smarthome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/smarthome.py b/lib/smarthome.py index 534ec86fe..fd2afe3ff 100644 --- a/lib/smarthome.py +++ b/lib/smarthome.py @@ -166,10 +166,10 @@ def initialize_dir_vars(self): self._lib_dir = os.path.join(self._base_dir, DIR_LIB) self._plugins_dir = os.path.join(self._base_dir, DIR_PLUGINS) self._modules_dir = os.path.join(self._base_dir, DIR_MODULES) + self._templates_dir = os.path.join(self._base_dir, DIR_TPL) # env and var dirs self._env_dir = os.path.join(self._lib_dir, DIR_ENV + os.path.sep) - self._template_dir = os.path.join(self._base_dir, DIR_TPL) self._cache_dir = os.path.join(self._var_dir, DIR_CACHE + os.path.sep) # user config dirs