mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-01-20 05:10:15 +08:00
Don't iterate over scripts if it doesn't exist
This commit is contained in:
parent
595c827bd3
commit
26404eaabf
@ -29,6 +29,9 @@ scripts = []
|
|||||||
|
|
||||||
|
|
||||||
def load_scripts(basedir):
|
def load_scripts(basedir):
|
||||||
|
if not os.path.exists(basedir):
|
||||||
|
return
|
||||||
|
|
||||||
for filename in os.listdir(basedir):
|
for filename in os.listdir(basedir):
|
||||||
path = os.path.join(basedir, filename)
|
path = os.path.join(basedir, filename)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user