Simplified messages

This commit is contained in:
Ruud
2011-10-22 23:14:03 +02:00
parent a7bce52b7b
commit 2f10cd0e3d
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -286,7 +286,7 @@ class Renamer(Plugin):
fireEventAsync('renamer.after', group)
# Notify on download
download_message = 'Downloaded %s (%s) successfully.' % (group['library']['titles'][0]['title'], replacements['quality'])
download_message = 'Downloaded %s (%s)' % (group['library']['titles'][0]['title'], replacements['quality'])
fireEventAsync('movie.downloaded', message = download_message, data = group)
# Break if CP wants to shut down
+3 -2
View File
@@ -124,8 +124,9 @@ class Searcher(Plugin):
rls.status_id = snatched_status.get('id')
db.commit()
log.info('Snatched "%s" successfully.' % data.get('name'))
fireEvent('movie.snatched', message = 'Downloading of %s successful.' % data.get('name'), data = rls.to_dict())
snatch_message = 'Snatched %s' % data.get('name')
log.info(snatch_message)
fireEvent('movie.snatched', message = snatch_message, data = rls.to_dict())
return True