Co-authored-by: Adrian Sampson <adrian@radbox.org>
This commit is contained in:
Dorian Soergel 2021-01-07 18:36:38 +01:00 committed by GitHub
parent e54bf27546
commit 9d34d0f793
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -295,7 +295,7 @@ def album_info(release):
# when the release has more than 500 tracks. So we use browse_recordings
# on chunks of tracks to recover the same information in this case.
if ntracks > BROWSE_MAXTRACKS:
log.info(u'Album ' + str(release['id']) + u' has too many tracks')
log.debug(u'Album {} has too many tracks', release['id'])
log.info(u'Fetching recordings in batches of ' + str(BROWSE_CHUNKSIZE))
recording_list = []
for i in range(0, ntracks, BROWSE_CHUNKSIZE):