From 6da22e331ae61014f85824592024411903683439 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Plogmann Date: Sat, 1 Oct 2016 20:37:38 +0200 Subject: [PATCH] added missing except for httpRequest --- plugins/httpRequest/httpRequest.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/httpRequest/httpRequest.py b/plugins/httpRequest/httpRequest.py index 910ff81..c502c3c 100644 --- a/plugins/httpRequest/httpRequest.py +++ b/plugins/httpRequest/httpRequest.py @@ -102,6 +102,5 @@ def run(typ,freq,data): 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 + logging.error("unknown error") + logging.debug("unknown error", exc_info=True)