forked from platypush/platypush
Removed deprecated use_unicode parameter from MPDClient
This commit is contained in:
parent
08553f84b9
commit
b4627ecd04
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class MusicMpdPlugin(MusicPlugin):
|
||||||
while n_tries > 0:
|
while n_tries > 0:
|
||||||
try:
|
try:
|
||||||
n_tries -= 1
|
n_tries -= 1
|
||||||
self.client = mpd.MPDClient(use_unicode=True)
|
self.client = mpd.MPDClient()
|
||||||
self.client.connect(self.host, self.port)
|
self.client.connect(self.host, self.port)
|
||||||
return self.client
|
return self.client
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
Loading…
Reference in a new issue