fixed: avoid except:

fixed: prestartup_script - remove useless exception handling when fallback resolving comfy_path
This commit is contained in:
Dr.Lt.Data
2025-04-21 12:42:50 +09:00
committed by bymyself
parent 31de92a7ef
commit 276ccca4f6
13 changed files with 101 additions and 134 deletions

View File

@@ -94,7 +94,7 @@ def extract_nodes(code_text):
return s
else:
return set()
except:
except Exception:
return set()
@@ -396,7 +396,7 @@ def update_custom_nodes():
try:
download_url(url, temp_dir)
except:
except Exception:
print(f"[ERROR] Cannot download '{url}'")
with concurrent.futures.ThreadPoolExecutor(10) as executor: