|
|
@ -51,8 +51,11 @@ def check_latest_version():
|
|
|
|
Heavely dependent on server and server configurations
|
|
|
|
Heavely dependent on server and server configurations
|
|
|
|
not granted to work forever.'''
|
|
|
|
not granted to work forever.'''
|
|
|
|
connection = http.client.HTTPConnection('feedback-ltworf.appspot.com')
|
|
|
|
connection = http.client.HTTPConnection('feedback-ltworf.appspot.com')
|
|
|
|
connection.request("GET", "/version/relational")
|
|
|
|
try:
|
|
|
|
r = connection.getresponse()
|
|
|
|
connection.request("GET", "/version/relational")
|
|
|
|
|
|
|
|
r = connection.getresponse()
|
|
|
|
|
|
|
|
except:
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
# html
|
|
|
|
# html
|
|
|
|
s = r.read()
|
|
|
|
s = r.read()
|
|
|
|