Skip to content

Commit

Permalink
Fix bump script for double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
jesserockz committed Mar 22, 2021
1 parent a8bc7a1 commit 8521bc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bump-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"',
)


Expand Down

0 comments on commit 8521bc3

Please sign in to comment.