Mercurial > public > sg101
diff potd/tasks.py @ 750:aeafbf3ecebf
For #63, upgrade to celery 3.1.7.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 31 Dec 2013 16:36:22 -0600 |
parents | ee87ea74d46b |
children |
line wrap: on
line diff
--- a/potd/tasks.py Mon Dec 30 15:05:43 2013 -0600 +++ b/potd/tasks.py Tue Dec 31 16:36:22 2013 -0600 @@ -2,11 +2,13 @@ Celery tasks for the POTD app. """ -from celery.task import task +from __future__ import absolute_import + +from celery import shared_task import potd.tools -@task +@shared_task def pick_potd(): potd.tools.pick_potd()