From 0539e33207a8a239e53ecb15ac515c5d8484c667 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Tue, 19 Dec 2017 09:05:27 +0100 Subject: [PATCH] fix copy fail only made a ref not a real copy --- plugins/httpRequest/httpRequest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/httpRequest/httpRequest.py b/plugins/httpRequest/httpRequest.py index f5f5e89..1622a8b 100644 --- a/plugins/httpRequest/httpRequest.py +++ b/plugins/httpRequest/httpRequest.py @@ -71,7 +71,7 @@ def run(typ,freq,data): # Make a copy of the data field to not overwrite the data in it # Replace special characters in dataCopy Strings for URL # - dataCopy = data + dataCopy = dict(data) for key in dataCopy: if isinstance(dataCopy[key], basestring): dataCopy[key] = urllib.quote(dataCopy[key])