From 2bf4e6c5c6a76655b4bc2dc3941dd174e29fa810 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Sun, 20 Aug 2017 11:41:37 +0200 Subject: [PATCH] Fix import of celery app in documentation (#596) --- doc/development/implementation/background.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development/implementation/background.rst b/doc/development/implementation/background.rst index bbdadb63b..67ed9f257 100644 --- a/doc/development/implementation/background.rst +++ b/doc/development/implementation/background.rst @@ -14,7 +14,7 @@ Implementing a task A common pattern for implementing asynchronous tasks can be seen a lot in ``pretix.base.services`` and looks like this:: - from pretix.celery import app + from pretix.celery_app import app @app.task def my_task(argument1, argument2):