CI Report:
https://ci-tests.linuxserver.io/linuxserver/sabnzbd/nightly-5f933ddc-ls141/index.html
LinuxServer Changes:
Full Changelog: nightly-6361fea2-ls140...nightly-5f933ddc-ls141
Remote Changes:
Fix spurious FileExistsError logs when download directories already exist (#3397)
create_all_dirs checks if a directory exists before creating it, but
this can still fail with FileExistsError if another thread creates it
in between, or if the filesystem returns stale information. The error
gets caught by the generic OSError handler and logged as a failure,
even though the directory is actually there and everything is fine.
Handle FileExistsError separately so that existing directories are
silently accepted instead of being treated as errors.