From 21481bbae80f0336d44cd74b97fb7dbabfde31a9 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Tue, 19 Sep 2017 23:02:29 +0200 Subject: [PATCH] Fix connection worker call --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index cf5c41c..29d7503 100644 --- a/main.py +++ b/main.py @@ -48,7 +48,7 @@ def application(env, re): return try: - output = workers.conn.worker(frm, to, count, date, time, mode) + output = workers.conn.worker(frm, to, count, outtime, mode) except Exception as e: re("500 Internal Server Error", []) yield "

500 Internal Server Error

".encode()