From efd11a6c0884bbc82e3fc2c1e27924185978db8c Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Tue, 26 Aug 2014 19:19:34 -0400 Subject: [PATCH] notifiers/libnotify: fix syntax error from #624 Prior to this got error 'too many values to unpack' when updating and libnotify notifications were enabled. --- sickbeard/notifiers/libnotify.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sickbeard/notifiers/libnotify.py b/sickbeard/notifiers/libnotify.py index 5f8b96f9..9984bdce 100644 --- a/sickbeard/notifiers/libnotify.py +++ b/sickbeard/notifiers/libnotify.py @@ -95,7 +95,8 @@ class LibnotifyNotifier: def notify_git_update(self, new_version = "??"): if sickbeard.USE_LIBNOTIFY: - update_text=common.notifyStrings[common.NOTIFY_GIT_UPDATE_TEXT], title=common.notifyStrings[common.NOTIFY_GIT_UPDATE] + update_text=common.notifyStrings[common.NOTIFY_GIT_UPDATE_TEXT] + title=common.notifyStrings[common.NOTIFY_GIT_UPDATE] self._notify(title, update_text + new_version) def test_notify(self):