diff options
author | Jack Lloyd <[email protected]> | 2018-01-08 10:26:16 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-01-08 10:26:16 -0500 |
commit | c2f5db4c97440db66164295e8a6a76cf6887779b (patch) | |
tree | 627d946fae41604a12bb5e3936bf5708cd7004f5 /configure.py | |
parent | fc7198a7aac632e370e49cadcf61d64122a59d4f (diff) |
Fix bug when release date is set
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index c88bb8157..de15d7e72 100755 --- a/configure.py +++ b/configure.py @@ -2952,7 +2952,7 @@ def main_action_configure_build(info_modules, source_paths, options, Version.as_string(), Version.vc_rev(), Version.release_type(), - ('dated ' + Version.datestamp()) if Version.datestamp() != 0 else 'undated')) + ('dated %d' % (Version.datestamp())) if Version.datestamp() != 0 else 'undated')) if options.unsafe_fuzzer_mode: logging.warning("The fuzzer mode flag is labeled unsafe for a reason, this version is for testing only") |