Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1b0b82a authored by Adam Tauber's avatar Adam Tauber
Browse files

[fix] version.py pep8 and py3 compatibility

parent 524e30e0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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)