[fix] version.py pep8 and py3 compatibility

This commit is contained in:
Adam Tauber 2014-12-02 00:09:08 +01:00
parent 524e30e001
commit b1b0b82a2a
1 changed files with 3 additions and 1 deletions

View File

@ -21,4 +21,6 @@ VERSION_MAJOR = 0
VERSION_MINOR = 4
VERSION_BUILD = 0
VERSION_STRING = "%d.%d.%d" % (VERSION_MAJOR,VERSION_MINOR,VERSION_BUILD)
VERSION_STRING = "{0}.{1}.{2}".format(VERSION_MAJOR,
VERSION_MINOR,
VERSION_BUILD)