From 15a999cb87c87cf3eab7b5bff6bdc011a372792f Mon Sep 17 00:00:00 2001 From: Andrey Skvortsov Date: Sat, 29 Mar 2025 14:48:16 +0300 Subject: [PATCH] mpegize: fix double % in output since there is no format output here double percents are not needed. --- mpegize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpegize.py b/mpegize.py index ec8fd2b..ddef7c1 100755 --- a/mpegize.py +++ b/mpegize.py @@ -452,7 +452,7 @@ class Mpegize: if ext=="grw": return print("Phase 1: jpegize", file=sys.stderr) - print("Message: 0%%") + print("Message: 0%") sys.stdout.flush() m.prepare() m.jpegize()