added missing except for httpRequest

This commit is contained in:
Jan-Hendrik Plogmann 2016-10-01 20:35:44 +02:00
parent 0df55885d9
commit 87238e60cc

View file

@ -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