aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-08 00:47:05 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-08 00:47:05 +0100
commit57ab1c8ef4c40afabb992a8ab06cb78eac32baf0 (patch)
tree9b88f1a3d4349d68c3f019dcfa578b645a1f9440
parentSpecifying Python 3.4.2 runtime for Heroku. (diff)
downloadnewspipe-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.
-rw-r--r--conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.py b/conf.py
index 21d88299..296f784d 100644
--- a/conf.py
+++ b/conf.py
@@ -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']
bgstack15