comparison gpp/potd/tasks.py @ 515:ae89ba801e8b

For #194, convert the POTD management command to a celery task. Refactored to put the logic for the command into a function, and the command simply calls this function. The task can also just call this function. Added some basic tests for the new function.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Dec 2011 02:41:15 +0000
parents
children
comparison
equal deleted inserted replaced
514:6d816aa586c1 515:ae89ba801e8b
1 """
2 Celery tasks for the POTD app.
3
4 """
5 from celery.task import task
6
7 import potd.tools
8
9
10 @task
11 def pick_potd():
12 potd.tools.pick_potd()