diff --git a/swh/lister/debian/tasks.py b/swh/lister/debian/tasks.py index 39aa6a2..cdac167 100644 --- a/swh/lister/debian/tasks.py +++ b/swh/lister/debian/tasks.py @@ -1,16 +1,18 @@ # Copyright (C) 2017 the Software Heritage developers # License: GNU General Public License version 3, or any later version # See top-level LICENSE file for more information from swh.lister.core.tasks import ListerTaskBase from .lister import DebianLister class DebianListerTask(ListerTaskBase): + task_queue = 'swh_lister_debian' + def new_lister(self): return DebianLister() def run_task(self, distribution): lister = self.new_lister() return lister.run(distribution)