X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2afff01c99c92f6044d2559a651283ddebb823e7..f4e9d89859fd521ec9eeb1f94f9caa374ef86960:/src/stats/tasks.py

diff --git a/src/stats/tasks.py b/src/stats/tasks.py
index 21f2470cc..b62f3e9c2 100644
--- a/src/stats/tasks.py
+++ b/src/stats/tasks.py
@@ -1,7 +1,7 @@
 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
-from celery.task import task
+from celery import shared_task
 from django.conf import settings
 import logging
 from urllib.parse import urlsplit
@@ -21,6 +21,6 @@ except AttributeError:
     _host = None
 
 
-@task(ignore_result=True)
+@shared_task(ignore_result=True)
 def track_request(piwik_args):
     urlopen("%s%s%s" % (settings.PIWIK_URL, "piwik.php?", piwik_args))