.BANCHO. Add auto increment version

This commit is contained in:
Nyo
2016-06-17 13:11:12 +02:00
parent 2be7fbf5c8
commit ed96bdbc4b
3 changed files with 7 additions and 2 deletions

View File

@@ -6,7 +6,11 @@ from objects import matchList
from objects import fileLocks
from raven import Client
VERSION = "1.2"
try:
with open("version") as f:
VERSION = f.read()
except:
VERSION = "¯\_(xd)_/¯"
db = None
conf = None