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
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
1 changed files with 1 additions and 1 deletions

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}"',
)