1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Remove "Whoops" exit.

This commit is contained in:
Daniel Martí 2013-05-26 13:07:56 +02:00
parent 5ec975cb7c
commit d2bce9e732

View File

@ -177,9 +177,6 @@ def check_market(app):
except urllib2.HTTPError, e:
if e.code == 404:
return (None, 'Not in market')
elif e.code == 503:
print "Whoops"
sys.exit(1)
else:
return (None, 'Failed with HTTP status' + str(req.getcode()))
page = resp.read()