nkchocoai / ComfyUI-SaveImageWithMetaData

Custom node for ComfyUI. Add a node to save images with metadata (PNGInfo) extracted from the input values of each node.
GNU General Public License v3.0
24 stars 7 forks source link

Bug in nodes.py Line 182 #14

Closed ckmwai closed 5 months ago

ckmwai commented 6 months ago

Hi, I found a small bug that is still existing as well as in your latest branch.

Location node/node.py Line 182

date_table = { "yyyy": now.year, "MM": now.hour, "dd": now.day, "hh": now.hour, "mm": now.minute, "ss": now.second, }

MM need to be

"MM": now.month

Best regards

nkchocoai commented 5 months ago

Sorry for the delay in noticing. Thank you for your report.

ckmwai commented 5 months ago

No worries! You're welcome