From 69c86843021fd1ff87d85797356653addce2c1ff Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Tue, 14 Aug 2018 10:19:13 -0400 Subject: [PATCH] Revise comment --- beetsplug/absubmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/absubmit.py b/beetsplug/absubmit.py index 4487da76c..5cce11bc0 100644 --- a/beetsplug/absubmit.py +++ b/beetsplug/absubmit.py @@ -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()