From 8fd80d31859b281e506ed94660ec954106d68735 Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 13 May 2013 23:44:01 +0200 Subject: [PATCH] Update instead of extend --- couchpotato/core/notifications/pushover/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/pushover/main.py b/couchpotato/core/notifications/pushover/main.py index ba7f426e..ea5e7748 100644 --- a/couchpotato/core/notifications/pushover/main.py +++ b/couchpotato/core/notifications/pushover/main.py @@ -23,7 +23,7 @@ class Pushover(Notification): } if data and data.get('library'): - api_data.extend({ + api_data.update({ 'url': toUnicode('http://www.imdb.com/title/%s/' % data['library']['identifier']), 'url_title': toUnicode('%s on IMDb' % getTitle(data['library'])), })