Mercurial > public > sg101
annotate potd/tasks.py @ 658:2adf01661ac5
Need to update the Markdown urlize extension too.
For reference, here is where I got it:
https://github.com/r0wb0t/markdown-urlize
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 May 2013 16:21:55 -0500 |
parents | ee87ea74d46b |
children | aeafbf3ecebf |
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() |