From ca91bc8920915c9962fe4d33476eb4fd1f6229ba Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Tue, 13 Jan 2015 18:53:30 +0100 Subject: [PATCH] mpdupdate: fix indent --- beetsplug/mpdupdate.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/beetsplug/mpdupdate.py b/beetsplug/mpdupdate.py index f8affed37..42ef55fa8 100644 --- a/beetsplug/mpdupdate.py +++ b/beetsplug/mpdupdate.py @@ -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,