Skip to content

Commit

Permalink
chore: 🚧 more info for bug reports
Browse files Browse the repository at this point in the history
  • Loading branch information
melMass committed Jul 30, 2023
1 parent ffa1a87 commit 3dadc11
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,17 @@ def load_nodes():

shutil.copytree(web_tgt, web_mtb)
log.info(f"Successfully copied {web_tgt} to {web_mtb}")
except Exception:
except Exception as e:
log.warn(
f"Failed to symlink and copy {web_tgt} to {web_mtb}. Please copy the folder manually."
)
log.warn(e)

except Exception: # OSError
except Exception as e:
log.warn(
f"Failed to create symlink to {web_mtb}. Please copy the folder manually."
)
log.warn(e)
else:
log.warn(
f"Comfy root probably not found automatically, please copy the folder {web_mtb} manually in the web/extensions folder of ComfyUI"
Expand Down

0 comments on commit 3dadc11

Please sign in to comment.