Skip to content

Commit

Permalink
🐛 - Fix episode labeling
Browse files Browse the repository at this point in the history
  • Loading branch information
drinfernoo committed Jan 3, 2023
1 parent a791071 commit 821488b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providerModules/a4kOfficial/core/justwatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _make_release_title(item, simple_info, info, type):
elif type == "episode":
return (
f"{simple_info['show_title']}: "
f"S{int(simple_info['season_number']):02}E{int(simple_info['season_number']):02} - "
f"S{int(simple_info['season_number']):02}E{int(simple_info['episode_number']):02} - "
f"{simple_info['episode_title']}"
)
else:
Expand Down

0 comments on commit 821488b

Please sign in to comment.