mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 17:43:52 +01:00
bugfix: don't use limit here
This commit is contained in:
parent
a755fbcf53
commit
e4792df50f
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue