Don't iterate over scripts if it doesn't exist

This commit is contained in:
hentailord85ez
2022-09-03 17:09:14 +01:00
committed by GitHub
parent 595c827bd3
commit 26404eaabf

View File

@@ -29,6 +29,9 @@ scripts = []
def load_scripts(basedir):
if not os.path.exists(basedir):
return
for filename in os.listdir(basedir):
path = os.path.join(basedir, filename)