From 81c7630c011296a8cf34e75b47afec807dc0ec8e Mon Sep 17 00:00:00 2001 From: nitzmahone Date: Mon, 20 Jun 2016 13:13:09 -0700 Subject: fix statusio_maintenance exception handling --- monitoring/statusio_maintenance.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'monitoring') diff --git a/monitoring/statusio_maintenance.py b/monitoring/statusio_maintenance.py index 893545e4..c2b93db5 100644 --- a/monitoring/statusio_maintenance.py +++ b/monitoring/statusio_maintenance.py @@ -319,7 +319,8 @@ def create_maintenance(auth_headers, url, statuspage, host_ids, if data["status"]["error"] == "yes": return 1, None, data["status"]["message"] - except Exception, e: + except Exception: + e = get_exception() return 1, None, str(e) return 0, None, None @@ -337,7 +338,8 @@ def delete_maintenance(auth_headers, url, statuspage, maintenance_id): data = json.loads(response.read()) if data["status"]["error"] == "yes": return 1, None, "Invalid maintenance_id" - except Exception, e: + except Exception: + e = get_exception() return 1, None, str(e) return 0, None, None -- cgit v1.2.1