diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-08-29 09:56:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-29 09:56:20 +0200 |
commit | d2abbfb1c5c5dea4fcbd09f075e110b33c8c4e67 (patch) | |
tree | 7926c4e94b784040d80cb88d997f30ceeefad097 | |
parent | 1ff772bb7e46143c59306396d009606c8d455891 (diff) | |
parent | 853d9c0807ed4fd18a51f9e9c4f8846277b27553 (diff) |
Merge pull request #21554 from bmwiedemann/date
Do not record year of build
-rw-r--r-- | methods.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py index e9450d95e2..7aa06f04b8 100644 --- a/methods.py +++ b/methods.py @@ -43,7 +43,7 @@ def update_version(module_version_string=""): f.write("#define VERSION_STATUS \"" + str(version.status) + "\"\n") f.write("#define VERSION_BUILD \"" + str(build_name) + "\"\n") f.write("#define VERSION_MODULE_CONFIG \"" + str(version.module_config) + module_version_string + "\"\n") - f.write("#define VERSION_YEAR " + str(datetime.datetime.now().year) + "\n") + f.write("#define VERSION_YEAR " + str(2018) + "\n") f.close() # NOTE: It is safe to generate this file here, since this is still executed serially |