mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 17:47:20 +00:00
Convert old auth settings to new
This commit is contained in:
parent
3bedabc08c
commit
3bed120a8e
1 changed files with 10 additions and 3 deletions
13
init.py
13
init.py
|
@ -235,9 +235,16 @@ try:
|
||||||
cfg.read_file(f)
|
cfg.read_file(f)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
cfg.remove_option('auth', 'enabled')
|
if cfg.has_section('auth'):
|
||||||
with open(config_file, 'w+') as configfile:
|
if cfg.has_option('auth', 'enabled'):
|
||||||
cfg.write(configfile)
|
enabled = cfg.getboolean('auth', 'enabled')
|
||||||
|
if enabled is True:
|
||||||
|
cfg.set('auth', 'type', 'basic')
|
||||||
|
elif enabled is False:
|
||||||
|
cfg.set('auth', 'type', 'basic')
|
||||||
|
cfg.remove_option('auth', 'enabled')
|
||||||
|
with open(config_file, 'w+') as configfile:
|
||||||
|
cfg.write(configfile)
|
||||||
|
|
||||||
from cork import Cork
|
from cork import Cork
|
||||||
import time
|
import time
|
||||||
|
|
Loading…
Reference in a new issue