Skip to content

Commit

Permalink
Update update_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sezelt authored Mar 21, 2024
1 parent 273d559 commit 9a4f3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
patch_number = line_split[2].split("'")[0].split('"')[0]

# Increment patch number
patch_number = str(int(patch_number) + 1) + "'"
patch_number = str(int(patch_number) + 1) + '"'


new_line = line_split[0] + "." + line_split[1] + "." + patch_number
Expand Down

0 comments on commit 9a4f3c3

Please sign in to comment.