mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-19 05:18:49 +00:00
Continue developing
This commit is contained in:
parent
65729064f4
commit
87ff6fb5cc
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,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