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))