Fix the version checker for python3

This commit is contained in:
Salvo 'LtWorf' Tomaselli 2015-06-13 17:39:42 +02:00
parent 5552923633
commit 923e515535

View File

@ -55,7 +55,7 @@ def check_latest_version():
s = r.read() s = r.read()
if len(s) == 0: if len(s) == 0:
return None return None
return str(s.strip()) return s.decode().strip()
class interface (object): class interface (object):