From e4792df50fd47ec75ba416f596734edd201b1e53 Mon Sep 17 00:00:00 2001 From: Peter Schnebel Date: Sat, 26 Oct 2013 10:29:21 +0200 Subject: [PATCH] bugfix: don't use limit here --- beetsplug/echonest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/echonest.py b/beetsplug/echonest.py index 942e4cfb1..e39dffd08 100644 --- a/beetsplug/echonest.py +++ b/beetsplug/echonest.py @@ -194,7 +194,7 @@ class EchonestMetadataPlugin(plugins.BeetsPlugin): except Exception: return from_track songs = self._echofun(pyechonest.song.profile, - ids=ids, track_ids=[track.id], limit=100, + ids=ids, track_ids=[track.id], buckets=['audio_summary']) if songs is None: raise Exception(u'failed to retrieve info from upload')