view gpp/potd/tasks.py @ 579:217a6319278c

For Django 1.4, added the admin password reset feature.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 May 2012 14:59:20 -0500
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()