annotate gpp/potd/tasks.py @ 565:6a265b5768ca

For bitbucket issue #5, rework the duplicate email checking in the registration form logic. Added tests for registration.
author Brian Neal <bgneal@gmail.com>
date Sun, 04 Mar 2012 13:20:40 -0600
parents ae89ba801e8b
children
rev   line source
bgneal@515 1 """
bgneal@515 2 Celery tasks for the POTD app.
bgneal@515 3
bgneal@515 4 """
bgneal@515 5 from celery.task import task
bgneal@515 6
bgneal@515 7 import potd.tools
bgneal@515 8
bgneal@515 9
bgneal@515 10 @task
bgneal@515 11 def pick_potd():
bgneal@515 12 potd.tools.pick_potd()