summaryrefslogtreecommitdiff
path: root/chimere/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/tasks.py')
-rw-r--r--chimere/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/tasks.py b/chimere/tasks.py
index d457f6a..43b219d 100644
--- a/chimere/tasks.py
+++ b/chimere/tasks.py
@@ -33,7 +33,7 @@ from external_utils import OsmApi
def single_instance_task(timeout):
def task_exc(func):
def wrapper(*args, **kwargs):
- return func()
+ return func(*args, **kwargs)
return wrapper
return task_exc