mirror of
https://github.com/beetbox/beets.git
synced 2025-12-31 13:02:47 +01:00
echonest: remove confusing length output (#545)
This commit is contained in:
parent
c196f20dfc
commit
661e82fdec
1 changed files with 2 additions and 2 deletions
|
|
@ -432,8 +432,8 @@ class EchonestMetadataPlugin(plugins.BeetsPlugin):
|
|||
self.config.set_args(opts)
|
||||
write = config['import']['write'].get(bool)
|
||||
for item in lib.items(ui.decargs(args)):
|
||||
log.info(u'echonest: {0} - {1} [{2}]'.format(item.artist,
|
||||
item.title, item.length))
|
||||
log.info(u'echonest: {0} - {1}'.format(item.artist,
|
||||
item.title))
|
||||
if self.config['force'] or self.requires_update(item):
|
||||
song = self.fetch_song(item)
|
||||
if song:
|
||||
|
|
|
|||
Loading…
Reference in a new issue