Strip newline from HLDS data version
This commit is contained in:
parent
323a24ece6
commit
5d6db78e6e
1 changed files with 1 additions and 1 deletions
|
@ -18,4 +18,4 @@ location_definitions: List[Location] = parse_all_directory(DATA_DIR)
|
||||||
location_definitions.sort(key=lambda l: l.name)
|
location_definitions.sort(key=lambda l: l.name)
|
||||||
|
|
||||||
proc = subprocess.run(["git", "rev-parse", "HEAD"], stdout=subprocess.PIPE, check=True)
|
proc = subprocess.run(["git", "rev-parse", "HEAD"], stdout=subprocess.PIPE, check=True)
|
||||||
location_definition_version = proc.stdout
|
location_definition_version = proc.stdout.decode().strip()
|
||||||
|
|
Loading…
Reference in a new issue