mpegize: fix double % in output

since there is no format output here double percents are not needed.
This commit is contained in:
Andrey Skvortsov
2025-03-29 14:48:16 +03:00
committed by Martijn Braam
parent 6cfc9bfc05
commit 15a999cb87

View File

@@ -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()