Fix typo in bump-version script once again

This commit is contained in:
Otto Winter 2020-07-26 13:50:45 +02:00
parent f61a82a568
commit abc83f6cb0
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}'"
)