Skip to content

Commit fd2d549

Browse files
committed
fix
1 parent be689df commit fd2d549

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/maxdiffusion/generate_wan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def run(config, pipeline=None, filename_prefix=""):
127127
print("compile time: ", (time.perf_counter() - s0))
128128
saved_video_path = []
129129
for i in range(len(videos)):
130-
video_path = os.path.join(f"{filename_prefix}wan_output_{config.seed}_{i}.mp4")
130+
video_path = f"{filename_prefix}wan_output_{config.seed}_{i}.mp4"
131131
export_to_video(videos[i], video_path, fps=config.fps)
132132
saved_video_path.append(video_path)
133133
if config.output_dir.startswith("gs://"):

0 commit comments

Comments
 (0)