From db14a88fc96ffc755bb52177ce4dcaae0471a377 Mon Sep 17 00:00:00 2001 From: Giancarlo Razzolini Date: Wed, 26 Feb 2020 19:24:55 -0300 Subject: [PATCH] spotify: Fix the spotify module (#773) The now_playing module does not use player_name anymore so the spotify module is broken. Change it to use player so it works correctly. --- i3pystatus/spotify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/spotify.py b/i3pystatus/spotify.py index 8f6085e..0918570 100644 --- a/i3pystatus/spotify.py +++ b/i3pystatus/spotify.py @@ -5,4 +5,4 @@ class Spotify(NowPlaying): """ Get Spotify info using dbus interface. Based on `now_playing`_ module. """ - player_name = "spotify" + player = "spotify"