view potd/tasks.py @ 1036:b7b98c729abc

Update news story admin to allow editing comment thread.
author Brian Neal <bgneal@gmail.com>
date Sun, 27 Dec 2015 12:00:51 -0600
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()