Browse Source

Add a helpful warning for links that don't point anywhere.

pull/1692/merge
comfyanonymous 7 months ago
parent
commit
abc69cab45
  1. 1
      comfy_extras/nodes_canny.py
  2. 2
      folder_paths.py

1
comfy_extras/nodes_canny.py

@ -1,4 +1,3 @@
#From https://github.com/kornia/kornia
import math
import torch

2
folder_paths.py

@ -181,6 +181,8 @@ def get_full_path(folder_name, filename):
full_path = os.path.join(x, filename)
if os.path.isfile(full_path):
return full_path
elif os.path.islink(full_path):
logging.warning("WARNING path {} exists but doesn't link anywhere, skipping.".format(full_path))
return None

Loading…
Cancel
Save