1
2
3
4
5
6
7
8
9
10
11
| --- a/playerdo/backends/mpris2.py Wed Nov 09 00:34:13 2011 +0000
+++ b/playerdo/backends/mpris2.py Sat Feb 25 14:59:10 2012 -0500
@@ -83,7 +83,7 @@
try:
return self._player
except AttributeError:
- obj = DBusObject(self.bus_name, PLAYER_OBJECT_NAME)
+ obj = DBusObject(self.bus_name, PLAYER_OBJECT_NAME, PLAYER_INTERFACE_NAME)
self._player = obj
return obj
|