view gpp/accounts/tasks.py @ 534:98f5facc0030

Clean up the birthday block. Get rid of space between name and comma. Get rid of bullets.
author Brian Neal <bgneal@gmail.com>
date Tue, 27 Dec 2011 01:15:27 +0000
parents e94570675664
children
line wrap: on
line source
"""
Celery tasks for the accounts application.

"""
from celery.task import task

from accounts.stats import update_user_stats


@task
def user_stats_task(user_id):
    """
    Run the update_user_stats() function on a new task.

    """
    update_user_stats(user_id)