From 25daa26c9863f6993449341c356602b27b36a8d2 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Wed, 1 Jul 2015 20:33:43 +0200 Subject: [PATCH] little error in httpRequest Plugin --- plugins/httpRequest/httpRequest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/httpRequest/httpRequest.py b/plugins/httpRequest/httpRequest.py index f374b30..e2ceabc 100644 --- a/plugins/httpRequest/httpRequest.py +++ b/plugins/httpRequest/httpRequest.py @@ -90,8 +90,8 @@ def run(typ,freq,data): url = url.replace("%MSG%", data["msg"]).replace("%BITRATE%", str(data["bitrate"])) #replace Wildcards else: logging.warning("Invalid Typ: %s", typ) - raise - + return + #same in all types url = url.replace("%DESCR%", data["description"]) # replace Wildcards url = url.replace("%TIME%", helper.curtime("%H:%M:%S")) # replace Wildcards