Fix import of celery app in documentation (#596)

This commit is contained in:
Tobias Kunze
2017-08-20 11:41:37 +02:00
committed by Raphael Michel
parent 584add97a3
commit 2bf4e6c5c6

View File

@@ -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):