From 22701c67ede6892baa1cf70f7cecfb5d6e7b3b67 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Wed, 1 Feb 2012 17:37:42 +0000 Subject: [PATCH] Check for updates a bit slower --- build/extlib/.gitignore | 1 + checkupdates.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build/extlib/.gitignore b/build/extlib/.gitignore index 1efb0a1c..7e1e8ff2 100644 --- a/build/extlib/.gitignore +++ b/build/extlib/.gitignore @@ -2,3 +2,4 @@ GreenDroid/ ActionBarSherlock/ FacebookSDK/ +OI/ diff --git a/checkupdates.py b/checkupdates.py index 0ccb8987..6eb890c5 100755 --- a/checkupdates.py +++ b/checkupdates.py @@ -35,7 +35,7 @@ execfile('config.py') # Returns (None, "a message") if this didn't work, or (version, vercode) for # the details of the current version. def check_market(app): - time.sleep(5) + time.sleep(10) url = 'http://market.android.com/details?id=' + app['id'] req = urllib.urlopen(url) if req.getcode() == 404: -- 2.30.2