Skip to content

Commit

Permalink
Fix joining segments in log for failed episodes (#10472)
Browse files Browse the repository at this point in the history
  • Loading branch information
medariox authored Apr 3, 2022
1 parent 2c8f142 commit 9efcd9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medusa/failed_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _process_release_name(self):

if segment:
self.log(logger.DEBUG, 'Created segment of episodes [{segment}] from release: {release}'.format(
segment=','.join(ep.episode for ep in segment),
segment=','.join(str(ep.episode) for ep in segment),
release=release_name
))

Expand Down

0 comments on commit 9efcd9a

Please sign in to comment.