Continuing development.

This commit is contained in:
Louis Vézina 2019-08-21 13:48:07 -04:00
parent 21ebd0c1e5
commit df622a2259
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def send_notifications(sonarrSeriesId, sonarrEpisodeId, message):
apobj.notify(
title='Bazarr notification',
body=(series + ' - S' + str(episode.season).zfill(2) + 'E' + str(episode.episode).zfill(2) + ' - ' + episode.title + ' : ' + message),
body=(series + ' - S' + str(episode[1]).zfill(2) + 'E' + str(episode[2]).zfill(2) + ' - ' + episode[0] + ' : ' + message),
)