mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 13:07:09 +01:00
Change print to self._log
This commit is contained in:
parent
a3990e0b62
commit
db641dccf2
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue