.BANCHO. .FIX. Remove extra characters from version

This commit is contained in:
Nyo 2016-12-20 20:39:29 +01:00
parent f8cc0c738c
commit f4c099c809

View File

@ -11,7 +11,7 @@ from common.web import schiavo
try: try:
with open("version") as f: with open("version") as f:
VERSION = f.read() VERSION = f.read().strip()
if VERSION == "": if VERSION == "":
raise Exception raise Exception
except: except: