X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fqueue_install.py;h=a9c94ae86295fcf11341db29519dd7a6a792a517;hb=a165a623caa27f8b3cbcb83eb442f1f196569f1e;hp=1135c137cd1fcb4fec075e4e4aa8eaac029d9aa6;hpb=ad9ad0e05e5c952793c36468406b56793a06abfa;p=dak.git diff --git a/daklib/queue_install.py b/daklib/queue_install.py index 1135c137..a9c94ae8 100755 --- a/daklib/queue_install.py +++ b/daklib/queue_install.py @@ -130,7 +130,7 @@ def do_unembargo(u, summary, short_summary, chg, session=None): suite = get_suite(suite_name, session) for q in suite.copy_queues: for f in u.pkg.files.keys(): - copyfile(os.path.join(polq.path, f), q.path) + copyfile(os.path.join(polq.path, f), os.path.join(q.path, f)) # ################################################################################# # @@ -156,7 +156,7 @@ def do_embargo(u, summary, short_summary, chg, session=None): suite = get_suite(suite_name, session) for q in suite.copy_queues: for f in u.pkg.files.keys(): - copyfile(os.path.join(polq.path, f), q.path) + copyfile(os.path.join(polq.path, f), os.path.join(q.path, f)) ################################################################################