Update gzip-firmware.py (#18936)

Small grammar fix.
This commit is contained in:
KDMcMullan 2023-06-22 21:42:15 +01:00 committed by GitHub
parent 04521e5542
commit 558f812ec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if tasmotapiolib.is_env_set(tasmotapiolib.ENABLE_ESP32_GZ, env) or env["PIOPLATF
)
else:
print(
"Compression reduced firmware size by {:.0f}% (was {} bytes, now {} bytes)".format(
"Compression reduced firmware size to {:.0f}% (was {} bytes, now {} bytes)".format(
(GZ_FIRMWARE_SIZE / ORG_FIRMWARE_SIZE) * 100,
ORG_FIRMWARE_SIZE,
GZ_FIRMWARE_SIZE,