From 377fdd9e5e06dc3dd703ff4b9d123437e6414cdf Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 6 May 2014 16:08:36 +0200 Subject: [PATCH] Use correct event --- couchpotato/core/plugins/renamer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/renamer.py b/couchpotato/core/plugins/renamer.py index 66bf20a2..d32a6362 100644 --- a/couchpotato/core/plugins/renamer.py +++ b/couchpotato/core/plugins/renamer.py @@ -453,7 +453,7 @@ class Renamer(Plugin): try: if media.get('status') == 'active' and media.get('profile_id'): profile = db.get('id', media['profile_id']) - if fireEvent('release.isfinish', group['meta_data']['quality'], profile): + if fireEvent('quality.isfinish', group['meta_data']['quality'], profile, single = True): mdia = db.get('id', media['_id']) mdia['status'] = 'done' mdia['last_edit'] = int(time.time())