Added catch-all exception for stats collection.

pull/2667/head
James Martin 12 years ago
parent e7f5186dec
commit 93d0ccd1e1

@ -193,6 +193,8 @@ def main():
stats_raw = status_to_json()
except urllib2.URLError, e:
stats_raw = status_to_json()
except Exception, e:
stats_raw = status_to_json()
stats = json.loads(stats_raw)

Loading…
Cancel
Save