X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2afff01c99c92f6044d2559a651283ddebb823e7..53a66f70e4a8f9585b3d1a459542fb2e44f310f2:/src/stats/tasks.py?ds=sidebyside

diff --git a/src/stats/tasks.py b/src/stats/tasks.py
index 21f2470cc..06e730c60 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.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. 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))