From 87238e60cc958578947f9459f4ef9e6c095dc0b7 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Plogmann Date: Sat, 1 Oct 2016 20:35:44 +0200 Subject: [PATCH] added missing except for httpRequest --- plugins/httpRequest/httpRequest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/httpRequest/httpRequest.py b/plugins/httpRequest/httpRequest.py index 15c74d5..910ff81 100644 --- a/plugins/httpRequest/httpRequest.py +++ b/plugins/httpRequest/httpRequest.py @@ -101,3 +101,7 @@ def run(typ,freq,data): logging.error("cannot send HTTP request") logging.debug("cannot send HTTP request", exc_info=True) return + except: + logging.error("cannot send HTTP request") + logging.debug("cannot send HTTP request", exc_info=True) + return