blacken version.py

This commit is contained in:
Dr. Johannes Pohl
2024-01-14 09:43:20 +01:00
parent 6dd5990250
commit e0f94fa105
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ def release():
for line in fileinput.input(version_file, inplace=True):
if line.startswith("VERSION"):
line = 'VERSION = "{0}" \n'.format(cur_version)
line = 'VERSION = "{0}"\n'.format(cur_version)
print(line, end="")
# Publish new version number

View File

@@ -1,4 +1,4 @@
VERSION = "2.9.6"
VERSION = "2.9.6"
if __name__ == "__main__":
# To read out version easy on command line for InnoSetup