update DB

scanner.py patch
This commit is contained in:
Dr.Lt.Data
2023-06-19 10:29:45 +09:00
parent fe5c817f71
commit f65e13ba36
3 changed files with 16 additions and 27 deletions

View File

@@ -138,7 +138,10 @@ def update_custom_nodes():
if name.endswith(".py"):
node_info[name] = url
download_url(url, ".tmp")
try:
download_url(url, ".tmp")
except:
print(f"[ERROR] Cannot downalod '{url}'")
return node_info