view potd/tasks.py @ 800:689db80068c8

Update requirements files to include Django 1.6.6.
author Brian Neal <bgneal@gmail.com>
date Sat, 23 Aug 2014 14:03:09 -0500
parents aeafbf3ecebf
children
line wrap: on
line source
"""
Celery tasks for the POTD app.

"""
from __future__ import absolute_import

from celery import shared_task

import potd.tools


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