mirror of
https://github.com/beetbox/beets.git
synced 2026-01-02 14:03:12 +01:00
mpdupdate: fix indent
This commit is contained in:
parent
753388550e
commit
ca91bc8920
1 changed files with 5 additions and 5 deletions
|
|
@ -81,11 +81,11 @@ class MPDUpdatePlugin(BeetsPlugin):
|
|||
self.register_listener('cli_exit', self.update)
|
||||
|
||||
def update(self, lib):
|
||||
self.update_mpd(
|
||||
config['mpd']['host'].get(unicode),
|
||||
config['mpd']['port'].get(int),
|
||||
config['mpd']['password'].get(unicode),
|
||||
)
|
||||
self.update_mpd(
|
||||
config['mpd']['host'].get(unicode),
|
||||
config['mpd']['port'].get(int),
|
||||
config['mpd']['password'].get(unicode),
|
||||
)
|
||||
|
||||
def update_mpd(self, host='localhost', port=6600, password=None):
|
||||
"""Sends the "update" command to the MPD server indicated,
|
||||
|
|
|
|||
Loading…
Reference in a new issue