mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 02:22:56 +08:00
Continue developing
This commit is contained in:
parent
e21651e198
commit
de8cc85424
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ settings = simpleconfigparser(defaults=defaults)
|
|||
settings.read(os.path.join(args.config_dir, 'config', 'config.ini'))
|
||||
|
||||
base_url = settings.general.base_url
|
||||
bazarr_url = 'http://localhost:' + (args.port if args.port else settings.general.port) + base_url
|
||||
bazarr_url = 'http://localhost:' + (str(args.port) if args.port else settings.general.port) + base_url
|
||||
|
||||
# sonarr url
|
||||
if settings.sonarr.getboolean('ssl'):
|
||||
|
|
Loading…
Reference in a new issue