mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
forgot to strip key in szs.analyze
This commit is contained in:
parent
76d47cd916
commit
3d5372acc6
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def analyze(file: str) -> dict:
|
|||
for line in ana_track.split("\n"):
|
||||
if "=" in line:
|
||||
key, value = line.split("=", maxsplit=1)
|
||||
dict_track[key] = value.strip()
|
||||
dict_track[key.strip()] = value.strip()
|
||||
|
||||
return dict_track
|
||||
|
||||
|
|
Loading…
Reference in a new issue