aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 12:29:44 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 12:29:44 +0100
commit3efe6367d96998577afcd31f89ed94dc10da0551 (patch)
tree64387c1ad7e44ba9b177249671b6aa42085b17b0 /src/conf.py
parentmore simple to just use os.urandom for the secret key. (diff)
downloadnewspipe-3efe6367d96998577afcd31f89ed94dc10da0551.tar.gz
newspipe-3efe6367d96998577afcd31f89ed94dc10da0551.tar.bz2
newspipe-3efe6367d96998577afcd31f89ed94dc10da0551.zip
Fixed another 'bad' URL.
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf.py b/src/conf.py
index 24be833c..628a27d3 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -22,7 +22,7 @@ TIME_ZONE = {
}
ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
-DEFAULTS = {"platform_url": "https://JARR.herokuapp.com/",
+DEFAULTS = {"platform_url": "https://jarr.herokuapp.com/",
"cdn_address": "",
"admin_email": "root@jarr.localhost",
"postmark_api_key": "",
bgstack15