Skip to content

Commit

Permalink
bugfix to update_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bsavitzky authored Oct 23, 2023
1 parent 1b9199c commit 2493514
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 @@ -8,7 +8,7 @@
lines = f.readlines()

line_split = lines[0].split(".")
patch_number = line_split[2].split("'")[0]
patch_number = line_split[2].split("'")[0].split('"')[0]

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

0 comments on commit 2493514

Please sign in to comment.