diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 19:23:21 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-04-29 19:23:21 +0000 |
commit | e23063610f4695ce12f963e06e78154f5ce128d1 (patch) | |
tree | eeab6971022d4ee0e1bfd6a8b603b0e950a6c868 /modules/interrogate.py | |
parent | 22bcc7be428c94e9408f589966c2040187245d81 (diff) | |
parent | cd7f2b19f45a28c8eeb88994c8972c61c8a3c63d (diff) | |
download | stable-diffusion-webui-gfx803-e23063610f4695ce12f963e06e78154f5ce128d1.tar.gz stable-diffusion-webui-gfx803-e23063610f4695ce12f963e06e78154f5ce128d1.tar.bz2 stable-diffusion-webui-gfx803-e23063610f4695ce12f963e06e78154f5ce128d1.zip |
Merge branch 'dev' into release_candidate
Diffstat (limited to 'modules/interrogate.py')
-rw-r--r-- | modules/interrogate.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/interrogate.py b/modules/interrogate.py index cbb80683..e1665708 100644 --- a/modules/interrogate.py +++ b/modules/interrogate.py @@ -32,7 +32,7 @@ def download_default_clip_interrogate_categories(content_dir): category_types = ["artists", "flavors", "mediums", "movements"]
try:
- os.makedirs(tmpdir)
+ os.makedirs(tmpdir, exist_ok=True)
for category_type in category_types:
torch.hub.download_url_to_file(f"https://raw.githubusercontent.com/pharmapsychotic/clip-interrogator/main/clip_interrogator/data/{category_type}.txt", os.path.join(tmpdir, f"{category_type}.txt"))
os.rename(tmpdir, content_dir)
@@ -41,7 +41,7 @@ def download_default_clip_interrogate_categories(content_dir): errors.display(e, "downloading default CLIP interrogate categories")
finally:
if os.path.exists(tmpdir):
- os.remove(tmpdir)
+ os.removedirs(tmpdir)
class InterrogateModels:
|