Parse version numbers more realistically

This commit is contained in:
Elliot Nunn 2019-10-10 10:10:50 +08:00
parent fc055d6aec
commit e8580f3954
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ def parse_version(num):
else:
stage = '?'
unreleased = '%0x' % unreleased
unreleased = '%d' % unreleased
vers = maj + '.' + minor