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))
#
#################################################################################
#
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))
################################################################################