Skip to content

Commit

Permalink
no log: fixed logging error
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Aug 7, 2023
1 parent f58d1a9 commit 487e3d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/radarr/sync/movies.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def update_one_movie(movie_id, action, defer_search=False):
insert(TableMovies)
.values(movie))
except IntegrityError as e:
logging.error(f"BAZARR cannot update movie {movie['path']} because of {e}")
logging.error(f"BAZARR cannot insert movie {movie['path']} because of {e}")
else:
event_stream(type='movie', action='update', payload=int(movie_id))
logging.debug('BAZARR inserted this movie into the database:{}'.format(path_mappings.path_replace_movie(
Expand Down

0 comments on commit 487e3d5

Please sign in to comment.