mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-24 23:07:36 +08:00
no log: fixed NoneType issue
This commit is contained in:
parent
0ddadb273e
commit
bbd549db60
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ def movies_download_subtitles(no):
|
|||
TableMovies.monitored)
|
||||
.where(reduce(operator.and_, conditions))) \
|
||||
.first()
|
||||
if not len(movie):
|
||||
if not movie:
|
||||
logging.debug("BAZARR no movie with that radarrId can be found in database:", str(no))
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue