aboutsummaryrefslogtreecommitdiff
path: root/newspipe/runserver.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/runserver.py')
-rwxr-xr-xnewspipe/runserver.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/newspipe/runserver.py b/newspipe/runserver.py
index 287a52f8..a1ebb54c 100755
--- a/newspipe/runserver.py
+++ b/newspipe/runserver.py
@@ -22,9 +22,6 @@ import calendar
from bootstrap import conf, application, populate_g
from flask_babel import Babel, format_datetime
-if conf.ON_HEROKU:
- from flask_sslify import SSLify
- SSLify(application, subdomains=True)
babel = Babel(application)
bgstack15