From a2e33a6c2fc6395bb3cd536bce22c7ab7aeaa7b2 Mon Sep 17 00:00:00 2001 From: urlbot Date: Sat, 13 Dec 2014 22:57:15 +0100 Subject: [PATCH] fix event_trigger() func pointer calls --- plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins.py b/plugins.py index 4d41c0c..5e37c9d 100644 --- a/plugins.py +++ b/plugins.py @@ -629,7 +629,7 @@ def event_trigger(): i = 0 for (t, callback, args) in joblist: if t < now: - callback(args) + callback(*args) del(joblist[i]) i += 1