mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 06:58:11 +01:00
Fix bump-version string format
This commit is contained in:
parent
1c3ed71d36
commit
f61a82a568
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ def write_version(version: Version):
|
||||||
sub(
|
sub(
|
||||||
'esphome/const.py',
|
'esphome/const.py',
|
||||||
r"^PATCH_VERSION = .*$",
|
r"^PATCH_VERSION = .*$",
|
||||||
f"PATCH_VERSION = {version.full_patch}"
|
f"PATCH_VERSION = '{version.full_patch}''"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue