mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
5 lines
136 B
Python
5 lines
136 B
Python
|
|
||
|
for line in open("CHANGELOG.md").readlines():
|
||
|
if (line.startswith("#### Version")):
|
||
|
print(line.split(" ")[3])
|
||
|
break
|