diff --git a/scripts/plexEmail.py b/scripts/plexEmail.py index 782cfdf..32afe7b 100644 --- a/scripts/plexEmail.py +++ b/scripts/plexEmail.py @@ -1320,12 +1320,13 @@ def exceptionHandler(type, value, tb): pwLink = '' emailText += '
' + showTitle.decode('utf-8') + '' emailText += 'S' + str(tvEpisodes[episode]['season_index']) + ' E' + str(tvEpisodes[episode]['index']) + ': ' + title.decode('utf-8') + ' ' htmlText += ''
- htmlText += ' ' + showTitle.decode('utf-8') + '' htmlText += 'S' + str(tvEpisodes[episode]['season_index']) + ' E' + str(tvEpisodes[episode]['index']) + ': ' + title.decode('utf-8') + ' ' @@ -1676,4 +1677,4 @@ def exceptionHandler(type, value, tb): elif (not config['email_enabled']): print 'Emails were not sent because the option is disabled in the config file.' else: - print 'Emails were not sent because there were no new additions in the timeframe specified.' \ No newline at end of file + print 'Emails were not sent because there were no new additions in the timeframe specified.' |