X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=9526852734c01a071eef2b3a901f90cc2bafcc63;hb=772f1b460ebe4507ef8fead3473802bd05a9a89f;hp=66424d86eb6a5e30424026bb3f851ae49ef5819c;hpb=bf38dcbe75f32f221887eeda8fce0e81e64db115;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 66424d86..95268527 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1969,7 +1969,7 @@ distribution.""" # Set up our copy queues (e.g. buildd queues) for suite_name in self.pkg.changes["distribution"].keys(): suite = get_suite(suite_name, session) - for q in suite.copyqueues: + for q in suite.copy_queues: for f in poolfiles: q.add_file_from_pool(f) @@ -2039,9 +2039,9 @@ distribution.""" """ h = Holding() utils.move(os.path.join(h.holding_dir, self.pkg.changes_file), - dest, perms=int(queue.changesperms, 8)) + queue.path, perms=int(queue.change_perms, 8)) for f in self.pkg.files.keys(): - utils.move(os.path.join(h.holding_dir, f), dest, perms=int(queue.perms, 8)) + utils.move(os.path.join(h.holding_dir, f), queue.path, perms=int(queue.perms, 8)) ###########################################################################