Fix the version checker for python3
This commit is contained in:
parent
5552923633
commit
923e515535
@ -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):
|
||||||
|
Loading…
Reference in New Issue
Block a user