wabbajack/scripts/version_extract.py

5 lines
136 B
Python
Raw Normal View History

2022-05-23 16:17:31 +00:00
for line in open("CHANGELOG.md").readlines():
if (line.startswith("#### Version")):
print(line.split(" ")[3])
break