Keep folder prefix in strip iteration node

This commit is contained in:
2026-08-06 11:35:37 +00:00
parent 2babfbad73
commit ba31c503b5
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -254,7 +254,7 @@ def _strip_iteration_suffix(value):
if "_" not in root:
return value
prefix, _suffix = root.rsplit("_", 1)
prefix, _suffix = root.split("_", 1)
return f"{prefix}{extension}"