diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-08 00:47:05 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-02-08 00:47:05 +0100 |
commit | 57ab1c8ef4c40afabb992a8ab06cb78eac32baf0 (patch) | |
tree | 9b88f1a3d4349d68c3f019dcfa578b645a1f9440 /conf.py | |
parent | Specifying Python 3.4.2 runtime for Heroku. (diff) | |
download | newspipe-57ab1c8ef4c40afabb992a8ab06cb78eac32baf0.tar.gz newspipe-57ab1c8ef4c40afabb992a8ab06cb78eac32baf0.tar.bz2 newspipe-57ab1c8ef4c40afabb992a8ab06cb78eac32baf0.zip |
No need to specify the version of python to use for the crawler on Heroku.
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ else: RECAPTCHA_PUBLIC_KEY = os.environ.get('RECAPTCHA_PUBLIC_KEY', '') RECAPTCHA_PRIVATE_KEY = os.environ.get('RECAPTCHA_PRIVATE_KEY', '') LOG_PATH = os.environ.get('LOG_PATH', 'pyaggr3g470r.log') - PYTHON = os.environ.get('PYTHON', 'python3.3') + PYTHON = 'python' SQLALCHEMY_DATABASE_URI = os.environ['DATABASE_URL'] |