Skip to content

Commit

Permalink
Modify debug output in update_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed May 29, 2022
1 parent fa33cbe commit e06787d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
with open(main_go_path, "r") as main_go:
content = main_go.read()
old_version = content.split("utils.Version = \"")[1].split("\"\n")[0]
print(f"Found old version in {main_go_path}:", old_version)
print(f"Found old version in {main_go_path}: {old_version}")

try:
VERSION = input(
Expand Down

0 comments on commit e06787d

Please sign in to comment.