From 89c38f5aa45feaf3c4666292b1adfdee8fc7b1dd Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 22 Jan 2013 23:24:09 +0100 Subject: [PATCH] Use host from config again. fix #1278 --- couchpotato/runner.py | 1 + 1 file changed, 1 insertion(+) diff --git a/couchpotato/runner.py b/couchpotato/runner.py index d3a49f02..7062c75b 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -212,6 +212,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En config = { 'use_reloader': reloader, 'port': tryInt(Env.setting('port', default = 5000)), + 'host': Env.setting('host', default = ''), 'ssl_cert': Env.setting('ssl_cert', default = None), 'ssl_key': Env.setting('ssl_key', default = None), }