X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue.py;h=9526852734c01a071eef2b3a901f90cc2bafcc63;hb=a98b338c639f8ca0825f4a39a4f5551214fafbab;hp=0c61843d173ca50220a414cee4d4f74c5ae051c9;hpb=fb98ceae164fcf56be1f34e622e3b0984abd9bda;p=dak.git diff --git a/daklib/queue.py b/daklib/queue.py index 0c61843d..95268527 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -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)) ###########################################################################