From db641dccf21fd633370ad00b828d4c1b7cd94f2d Mon Sep 17 00:00:00 2001 From: multikatt Date: Mon, 11 May 2015 15:56:12 -0400 Subject: [PATCH] Change print to self._log --- beetsplug/ipfs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/ipfs.py b/beetsplug/ipfs.py index 2514f3f26..a2e499548 100644 --- a/beetsplug/ipfs.py +++ b/beetsplug/ipfs.py @@ -63,12 +63,12 @@ class IPFSPlugin(BeetsPlugin): if line != '': if count < len(lib.items()): item = lib.items()[count] - print "item:: %s" % line + self._log.info("item: {0}", line) item.ipfs = line item.store() count += 1 else: - print "album:: %s" % line + self._log.info("album: {0}", line) lib.ipfs = line else: break