summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Maw <jonathan.maw@codethink.co.uk>2017-11-10 16:52:57 +0000
committerJonathan Maw <jonathan.maw@codethink.co.uk>2017-11-14 13:03:53 +0000
commite616dd31c2600ccda36a368dd92bc94b0be6dbde (patch)
treec00d8d57bd2f2beffa550bc07c6e9cc5b2288c97
parentf4afbf5941ca1cd7c74cbc1d837e57e196f2f85e (diff)
downloadbuildstream-e616dd31c2600ccda36a368dd92bc94b0be6dbde.tar.gz
compose.py: Use keyword args for utils.move_files
-rw-r--r--buildstream/plugins/elements/compose.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/compose.py b/buildstream/plugins/elements/compose.py
index 9d701c72f..00a77722b 100644
--- a/buildstream/plugins/elements/compose.py
+++ b/buildstream/plugins/elements/compose.py
@@ -162,7 +162,7 @@ class ComposeElement(Element):
if self.integration:
self.status("Moving {} integration files".format(len(integration_files)))
- utils.move_files(basedir, installdir, integration_files)
+ utils.move_files(basedir, installdir, files=integration_files)
# And we're done
return os.path.join(os.sep, 'buildstream', 'install')