Merge pull request #245 from Data-Monkey/split_it_up

Split it up
This commit is contained in:
jokob-sk
2023-06-04 14:18:03 +10:00
committed by GitHub
2 changed files with 17 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ def send (msg: noti_struc):
# execute CURL call
try:
# try runnning a subprocess
mylog('debug', '[send_webhook] curlParams: '+ curlParams)
mylog('debug', ['[send_webhook] curlParams: ', curlParams])
p = subprocess.Popen(curlParams, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
stdout, stderr = p.communicate()