Mercurial > public > sg101
annotate potd/tasks.py @ 896:0054a4a88c1c
Remove checking for https availability.
This seems to take quite a while, plus Python doesn't validate the cert, so we
could end up with dodgy sites.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 25 Feb 2015 21:09:41 -0600 |
parents | aeafbf3ecebf |
children |
rev | line source |
---|---|
bgneal@515 | 1 """ |
bgneal@515 | 2 Celery tasks for the POTD app. |
bgneal@515 | 3 |
bgneal@515 | 4 """ |
bgneal@750 | 5 from __future__ import absolute_import |
bgneal@750 | 6 |
bgneal@750 | 7 from celery import shared_task |
bgneal@515 | 8 |
bgneal@515 | 9 import potd.tools |
bgneal@515 | 10 |
bgneal@515 | 11 |
bgneal@750 | 12 @shared_task |
bgneal@515 | 13 def pick_potd(): |
bgneal@515 | 14 potd.tools.pick_potd() |