view gpp/accounts/tasks.py @ 541:06300c08bf81

update tags
author convert-repo
date Tue, 10 Jan 2012 07:57:40 +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)