diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-08-13 16:03:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 16:03:49 +0000 |
commit | 09ff5b5416e9e989cf2ddb2bab9129e27ed23f14 (patch) | |
tree | ef97d428ee0acb6d8b365a78a7b2447199ab15f0 | |
parent | 68f336bd994bed5442ad95bad6b6ad5564a5409a (diff) | |
download | stable-diffusion-webui-gfx803-09ff5b5416e9e989cf2ddb2bab9129e27ed23f14.tar.gz stable-diffusion-webui-gfx803-09ff5b5416e9e989cf2ddb2bab9129e27ed23f14.tar.bz2 stable-diffusion-webui-gfx803-09ff5b5416e9e989cf2ddb2bab9129e27ed23f14.zip |
Fix typo in launch_utils.py
existance -> existence
-rw-r--r-- | modules/launch_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/launch_utils.py b/modules/launch_utils.py index e1c9cfbe..8d2256ee 100644 --- a/modules/launch_utils.py +++ b/modules/launch_utils.py @@ -291,7 +291,7 @@ def prepare_environment(): blip_commit_hash = os.environ.get('BLIP_COMMIT_HASH', "48211a1594f1321b00f14c9f7a5b4813144b2fb9")
try:
- # the existance of this file is a signal to webui.sh/bat that webui needs to be restarted when it stops execution
+ # the existence of this file is a signal to webui.sh/bat that webui needs to be restarted when it stops execution
os.remove(os.path.join(script_path, "tmp", "restart"))
os.environ.setdefault('SD_WEBUI_RESTARTING', '1')
except OSError:
|