]> git.decadent.org.uk Git - dak.git/commitdiff
argh
authorMark Hymers <mhy@debian.org>
Sat, 31 Oct 2009 21:35:22 +0000 (21:35 +0000)
committerMark Hymers <mhy@debian.org>
Sat, 31 Oct 2009 21:35:22 +0000 (21:35 +0000)
Signed-off-by: Mark Hymers <mhy@debian.org>
daklib/queue.py

index 0c61843d173ca50220a414cee4d4f74c5ae051c9..037ad62773991da4a518b564ffd878e445aab083 100755 (executable)
@@ -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.changesperms, 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))
 
     ###########################################################################