From: Ansgar Burchardt Date: Wed, 22 Apr 2015 19:44:44 +0000 (+0200) Subject: update-suite: We need the build queue's suite. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=d0030a9b3fde62781961b717b69b6a89e4344f5a;p=dak.git update-suite: We need the build queue's suite. --- diff --git a/dak/update_suite.py b/dak/update_suite.py index cfca52a6..0d2de5ca 100644 --- a/dak/update_suite.py +++ b/dak/update_suite.py @@ -222,7 +222,7 @@ class SuiteUpdater(object): def update_suite(self): targets = set([self.target]) if self.obey_build_queues: - targets.update(self.target.copy_queues) + targets.update([bq.suite for bq in self.target.copy_queues]) target_names = [ s.suite_name for s in targets ] target_names.sort() target_name = ",".join(target_names)