From 001716633d0e16712a313bbb40ab366e192b443b Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Thu, 14 Aug 2025 16:40:42 -0400 Subject: [PATCH] fix namegen Signed-off-by: Vladimir Mandic --- modules/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video.py b/modules/video.py index 7ae09aaba..8efbad070 100644 --- a/modules/video.py +++ b/modules/video.py @@ -71,7 +71,7 @@ def save_video(p, images, filename = None, video_type: str = 'none', duration: f if filename is None and p is not None: filename = namegen.apply(shared.opts.samples_filename_pattern if shared.opts.samples_filename_pattern and len(shared.opts.samples_filename_pattern) > 0 else "[seq]-[prompt_words]") filename = os.path.join(shared.opts.outdir_video, filename) - filename = namegen.sequence(filename, shared.opts.outdir_video, '') + filename = namegen.sequence(filename) else: if os.path.sep not in filename: filename = os.path.join(shared.opts.outdir_video, filename)