view potd/tasks.py @ 735:cbdab67cd657

Fix typo in new posts template tag. Thanks to Volcano Rick.
author Brian Neal <bgneal@gmail.com>
date Sat, 09 Nov 2013 11:48:10 -0600
parents ee87ea74d46b
children aeafbf3ecebf
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()