.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:
with open("version") as f:
VERSION = f.read()
VERSION = f.read().strip()
if VERSION == "":
raise Exception
except: