From 771a68e3e5e1ed45d7c8f75a2c8df3c9f4389973 Mon Sep 17 00:00:00 2001 From: Tony Beeman Date: Fri, 9 Sep 2022 01:03:34 -0700 Subject: [PATCH] Fixed the path in webui_streamlit.py --- scripts/webui_streamlit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/webui_streamlit.py b/scripts/webui_streamlit.py index 92d3ef5..513de45 100644 --- a/scripts/webui_streamlit.py +++ b/scripts/webui_streamlit.py @@ -61,8 +61,8 @@ except: warnings.filterwarnings("ignore", category=DeprecationWarning) defaults = OmegaConf.load("configs/webui/webui_streamlit.yaml") -if (os.path.exists("userconfig_streamlit.yaml")): - user_defaults = OmegaConf.load("userconfig_streamlit.yaml"); +if (os.path.exists("configs/webui/userconfig_streamlit.yaml")): + user_defaults = OmegaConf.load("configs/webui/userconfig_streamlit.yaml"); defaults = OmegaConf.merge(defaults, user_defaults) # this is a fix for Windows users. Without it, javascript files will be served with text/html content-type and the bowser will not show any UI