1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 19:02:18 +01:00

Fix bump script for double quotes

This commit is contained in:
Jesse Hills
2021-03-22 17:19:10 +13:00
parent 4d340dc029
commit e2e074a3fd

View File

@@ -59,7 +59,7 @@ def write_version(version: Version):
sub(
"esphome/const.py",
r"^PATCH_VERSION = .*$",
f"PATCH_VERSION = '{version.full_patch}'",
f'PATCH_VERSION = "{version.full_patch}"',
)