summaryrefslogtreecommitdiff
path: root/cli/app/search/live.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/app/search/live.py')
-rw-r--r--cli/app/search/live.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/search/live.py b/cli/app/search/live.py
index 06b679e..a1c1700 100644
--- a/cli/app/search/live.py
+++ b/cli/app/search/live.py
@@ -391,7 +391,7 @@ class Listener:
print("Step {}. Generation time: {:.2f}s".format(i, time.time() - gen_time))
out_img = vs.data2pil(gen_images[0])
if out_img is not None:
- out_img.save(os.path.join(path_out, "frame_{:5d}.png".format(i)), format='png')
+ out_img.save(os.path.join(path_out, "frame_{:05d}.png".format(i)), format='png')
img_to_send = out_img.resize((256, 256), Image.BICUBIC)
meta = {
'i': i,