Updater fix
This commit is contained in:
parent
f222384c9f
commit
84e4cc35f1
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
from gevent import monkey; monkey.patch_all()
|
from gevent import monkey; monkey.patch_all()
|
||||||
import urllib, zipfile, os, ssl, httplib, socket
|
import urllib, zipfile, os, ssl, httplib, socket, re
|
||||||
import cStringIO as StringIO
|
import cStringIO as StringIO
|
||||||
|
|
||||||
def update():
|
def update():
|
||||||
|
@ -62,4 +62,8 @@ def update():
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
try:
|
||||||
update()
|
update()
|
||||||
|
except Exception, err:
|
||||||
|
print "Update error: %s" % err
|
||||||
|
raw_input("Press enter to exit")
|
Loading…
Reference in a new issue