Enable new version number format by default (see issue #2596)

To continue using the old format set the CEF_OLD_VERSION_FORMAT=1 environment
variable before building.
This commit is contained in:
Marshall Greenblatt 2019-03-18 16:55:20 -04:00
parent 1b9bc33bcf
commit e7d8dd5ef7
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class VersionFormatter:
# Whether to use the old version format by default.
self._old_format_default = \
bool(int(os.environ.get('CEF_OLD_VERSION_FORMAT', '1')))
bool(int(os.environ.get('CEF_OLD_VERSION_FORMAT', '0')))
self.reset()