view potd/tasks.py @ 958:4dbca98db8b8

Update to Django 1.7.9.
author Brian Neal <bgneal@gmail.com>
date Sun, 12 Jul 2015 20:52:57 -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()