Preparation for later autoupdate changes
This commit is contained in:
parent
5c09439b46
commit
ae19966095
1 changed files with 4 additions and 3 deletions
|
@ -197,6 +197,10 @@ def is_outdated(url=None):
|
||||||
# updates...or at least a notifier, until it can be automated.
|
# updates...or at least a notifier, until it can be automated.
|
||||||
|
|
||||||
def updateCheck(q):
|
def updateCheck(q):
|
||||||
|
# karxi: Disabled for now; causing issues.
|
||||||
|
# There should be an alternative system in place soon.
|
||||||
|
return q.put((False,0))
|
||||||
|
|
||||||
time.sleep(3)
|
time.sleep(3)
|
||||||
data = urllib.urlencode({"type" : USER_TYPE, "os" : OS_TYPE, "install" : INSTALL_TYPE})
|
data = urllib.urlencode({"type" : USER_TYPE, "os" : OS_TYPE, "install" : INSTALL_TYPE})
|
||||||
try:
|
try:
|
||||||
|
@ -214,9 +218,6 @@ def updateCheck(q):
|
||||||
print full
|
print full
|
||||||
print repr(verStrToNum(newest))
|
print repr(verStrToNum(newest))
|
||||||
|
|
||||||
# karxi: Disabled for now; causing issues.
|
|
||||||
return q.put((False,0))
|
|
||||||
|
|
||||||
if major <= _pcMajor:
|
if major <= _pcMajor:
|
||||||
if minor <= _pcMinor:
|
if minor <= _pcMinor:
|
||||||
if status:
|
if status:
|
||||||
|
|
Loading…
Reference in a new issue