diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-27 21:52:33 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-27 21:52:33 +0000 |
commit | af2951ed53da6d357aea9232538f9ea7e1cdc648 (patch) | |
tree | 0cced3f7a4bf4db1d380401964ee77668c68c006 /modules/paths_internal.py | |
parent | de04573438bc111f137359b8f4998780bf315275 (diff) | |
download | stable-diffusion-webui-gfx803-af2951ed53da6d357aea9232538f9ea7e1cdc648.tar.gz stable-diffusion-webui-gfx803-af2951ed53da6d357aea9232538f9ea7e1cdc648.tar.bz2 stable-diffusion-webui-gfx803-af2951ed53da6d357aea9232538f9ea7e1cdc648.zip |
base default image output on data_path
Co-Authored-By: Alberto Cano <34340962+canoalberto@users.noreply.github.com>
Diffstat (limited to 'modules/paths_internal.py')
-rw-r--r-- | modules/paths_internal.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/paths_internal.py b/modules/paths_internal.py index 89131a54..b86ecd7f 100644 --- a/modules/paths_internal.py +++ b/modules/paths_internal.py @@ -28,5 +28,6 @@ models_path = os.path.join(data_path, "models") extensions_dir = os.path.join(data_path, "extensions")
extensions_builtin_dir = os.path.join(script_path, "extensions-builtin")
config_states_dir = os.path.join(script_path, "config_states")
+default_output_dir = os.path.join(data_path, "output")
roboto_ttf_file = os.path.join(modules_path, 'Roboto-Regular.ttf')
|