WAS Node Suite Warning: It doesn't seem ComfyUI_ADV_CLIP_emb is up to date. Falling back to legacy method.
!!! Exception during processing !!!
Traceback (most recent call last):
File "C:\AI\ComfyUI_windows_portable\ComfyUI\execution.py", line 145, in recursive_execute
output_data, output_ui = get_output_data(obj, input_data_all)
File "C:\AI\ComfyUI_windows_portable\ComfyUI\execution.py", line 75, in get_output_data
return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True)
File "C:\AI\ComfyUI_windows_portable\ComfyUI\execution.py", line 68, in map_node_over_list
results.append(getattr(obj, func)(**slice_dict(input_data_all, i)))
File "C:\AI\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui\WAS_Node_Suite.py", line 12692, in encode
return ([[res[0][0][0], {}]], new_text, text, { "ui": { "string": new_text } } )
NameError: name 'res' is not defined
Solution:
It appears with your latest commit you mixed up the encode and res variables from the former try-catch block, now assigning encode but using the no longer existing res in the return statement. Replacing res with encode should fix the issue:
Oh yeah, cause blenderneko added and removed affective pool outputs and that was a condition block. I have already patched that but spaced on pushing..
https://github.com/WASasquatch/was-node-suite-comfyui/blob/f6b9c67d2fb6881764b6c38a8a15f32aeb7b1e66/WAS_Node_Suite.py#L12692
Error:
Solution:
It appears with your latest commit you mixed up the
encode
andres
variables from the former try-catch block, now assigningencode
but using the no longer existingres
in the return statement. Replacingres
withencode
should fix the issue: