From b2582c5d6217963204ef5cd5847ef26f3a6a12a0 Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Tue, 6 Jan 2015 17:15:55 +0100 Subject: [PATCH] MusicBrainz collection plugin: delete "print" uses --- beetsplug/mbcollection.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/beetsplug/mbcollection.py b/beetsplug/mbcollection.py index 8535c5f86..e5f62f489 100644 --- a/beetsplug/mbcollection.py +++ b/beetsplug/mbcollection.py @@ -12,8 +12,6 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -from __future__ import print_function - from beets.plugins import BeetsPlugin from beets.ui import Subcommand from beets import ui @@ -104,6 +102,6 @@ class MusicBrainzCollectionPlugin(BeetsPlugin): self._log.info(u'skipping invalid MBID: {0}', aid) # Submit to MusicBrainz. - print('Updating MusicBrainz collection {0}...'.format(collection_id)) + self._log.info('Updating MusicBrainz collection {0}...', collection_id) submit_albums(collection_id, album_ids) - print('...MusicBrainz collection updated.') + self._log.info('...MusicBrainz collection updated.')