Fix bump-version string format

This commit is contained in:
Otto Winter 2020-07-26 10:16:54 +02:00
parent 1c3ed71d36
commit f61a82a568
No known key found for this signature in database
GPG Key ID: 48ED2DDB96D7682C
1 changed files with 1 additions and 1 deletions

View File

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