Fix version code detection in patchport
This commit is contained in:
parent
3f66c64829
commit
4222669a72
1 changed files with 2 additions and 2 deletions
|
@ -199,9 +199,9 @@ for patch in os.listdir(os.path.join(cutthecord_folder, "patches")):
|
||||||
# Add supported version to readme of that patch, hacky
|
# Add supported version to readme of that patch, hacky
|
||||||
# https://stackoverflow.com/a/35130508/3286892
|
# https://stackoverflow.com/a/35130508/3286892
|
||||||
with open(readme_path, 'r') as f:
|
with open(readme_path, 'r') as f:
|
||||||
readme_text = f.read().replace(f'- {from_versionname}',
|
readme_text = f.read().replace(f'- {from_versionname}\n',
|
||||||
f'- {from_versionname}\n'
|
f'- {from_versionname}\n'
|
||||||
f'- {to_versionname}')
|
f'- {to_versionname}\n')
|
||||||
with open(readme_path, "w") as f:
|
with open(readme_path, "w") as f:
|
||||||
f.write(readme_text)
|
f.write(readme_text)
|
||||||
|
|
||||||
|
|
Reference in a new issue