From 0a5057df7a332153ce017ca2470b16352057fba3 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 22 Oct 2011 22:44:07 +0200 Subject: [PATCH] Changed notification messages --- couchpotato/core/plugins/renamer/main.py | 2 +- couchpotato/core/plugins/searcher/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/renamer/main.py b/couchpotato/core/plugins/renamer/main.py index 49e92aaa..7bff95e3 100644 --- a/couchpotato/core/plugins/renamer/main.py +++ b/couchpotato/core/plugins/renamer/main.py @@ -286,7 +286,7 @@ class Renamer(Plugin): fireEventAsync('renamer.after', group) # Notify on download - download_message = 'Download of %s (%s) successful.' % (group['library']['titles'][0]['title'], replacements['quality']) + download_message = 'Downloaded %s (%s) successfully.' % (group['library']['titles'][0]['title'], replacements['quality']) fireEventAsync('movie.downloaded', message = download_message, data = group) # Break if CP wants to shut down diff --git a/couchpotato/core/plugins/searcher/main.py b/couchpotato/core/plugins/searcher/main.py index d172c028..035be2ca 100644 --- a/couchpotato/core/plugins/searcher/main.py +++ b/couchpotato/core/plugins/searcher/main.py @@ -124,7 +124,7 @@ class Searcher(Plugin): rls.status_id = snatched_status.get('id') db.commit() - log.info('Downloading of %s successful.' % data.get('name')) + log.info('Snatched "%s" successfully.' % data.get('name')) fireEvent('movie.snatched', message = 'Downloading of %s successful.' % data.get('name'), data = rls.to_dict()) return True