Typo in keyword name

This commit is contained in:
Fabio Manganiello 2019-09-02 01:00:38 +02:00
parent 7bbaaba767
commit 7bf4284f7b
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class TorrentPlugin(Plugin):
results[cat] = self.categories[cat](query, *args, **kwargs)
workers = [
threading.Thread(target=worker, kwargs={'category': category})
threading.Thread(target=worker, kwargs={'cat': category})
for category in (category or self.categories.keys())
]