From f39f20e7e4c6b0fc76f494c1c31fb293a63acc56 Mon Sep 17 00:00:00 2001 From: nobodyzxc Date: Tue, 13 Oct 2020 18:48:54 +0800 Subject: [PATCH] use_https from False to True --- config_mgr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_mgr.py b/config_mgr.py index adc16bf..9fc138c 100755 --- a/config_mgr.py +++ b/config_mgr.py @@ -48,7 +48,7 @@ def sample_cfg_file(cls): cfg['networking'] = {} - cfg['networking']['use_https'] = False + cfg['networking']['use_https'] = True cfg['networking']['drrr_domain'] = 'drrr.com' cfg['networking']['http_failure_retries'] = 5 cfg['networking']['cookies_dir'] = 'cookies' @@ -74,4 +74,4 @@ def sample_cfg_file(cls): if __name__ == '__main__': config_mgr.sample_cfg_file() - c = config_mgr() \ No newline at end of file + c = config_mgr()