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: except urllib2.HTTPError, e:
if e.code == 404: if e.code == 404:
return (None, 'Not in market') return (None, 'Not in market')
elif e.code == 503:
print "Whoops"
sys.exit(1)
else: else:
return (None, 'Failed with HTTP status' + str(req.getcode())) return (None, 'Failed with HTTP status' + str(req.getcode()))
page = resp.read() page = resp.read()