view gpp/potd/tasks.py @ 518:5171a5e9353b

For #194, add a celery task for purging deleted private messages.
author Brian Neal <bgneal@gmail.com>
date Fri, 16 Dec 2011 01:17:35 +0000
parents ae89ba801e8b
children
line wrap: on
line source
"""
Celery tasks for the POTD app.

"""
from celery.task import task

import potd.tools


@task
def pick_potd():
    potd.tools.pick_potd()