Revise comment

This commit is contained in:
Adrian Sampson 2018-08-14 10:19:13 -04:00
parent 4242a6b202
commit 69c8684302

View file

@ -110,7 +110,7 @@ class AcousticBrainzSubmitPlugin(plugins.BeetsPlugin):
for item in items:
self.analyze_submit(item)
else:
# Create threadpool
# Analyze in parallel using a thread pool.
pool = ThreadPool()
pool.map(self.analyze_submit, items)
pool.close()