mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-31 03:12:12 +00:00
Fix for #843
This commit is contained in:
parent
fd339b5fff
commit
de1fe680df
1 changed files with 2 additions and 0 deletions
|
@ -2223,6 +2223,8 @@ def api_help():
|
|||
|
||||
# Mute DeprecationWarning
|
||||
warnings.simplefilter("ignore", DeprecationWarning)
|
||||
# Mute Insecure HTTPS requests made to Sonarr and Radarr
|
||||
warnings.filterwarnings('ignore', message='Unverified HTTPS request')
|
||||
if six.PY3:
|
||||
warnings.simplefilter("ignore", BrokenPipeError)
|
||||
server = CherryPyWSGIServer((str(settings.general.ip), (int(args.port) if args.port else int(settings.general.port))), app)
|
||||
|
|
Loading…
Reference in a new issue