From 12a031aed6f5c7c01b8a3e5d743452ac6a297eb8 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 4 Feb 2017 22:00:42 -0600 Subject: [PATCH] mpd-not: tweak to the output format --- scripts/mpd-notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mpd-notifications.py b/scripts/mpd-notifications.py index ca1ed8a..b16c63e 100644 --- a/scripts/mpd-notifications.py +++ b/scripts/mpd-notifications.py @@ -64,7 +64,7 @@ def notify_song(): title = current.get('title', "Unknown") album = current.get('album', "Unknown") - np = "{0:s} - [{1:s}] {2:s}".format(artist, album, title) + np = "{0:s} - {1:s} [{2:s}]".format(artist, title, album) if np != last_np: last_np = np logger.debug("notifying: {0:s}".format(np))