Common: Strip out newline in version

This commit is contained in:
Ilija Lazoroski 2022-08-03 16:50:31 +02:00
parent 8586d89062
commit d1efa1a790
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ PATCH = "0"
build_file_path = Path(__file__).parent.joinpath("BUILD")
with open(build_file_path, "r") as build_file:
BUILD = build_file.read()
BUILD = build_file.read().strip()
def get_version(build=BUILD):