diff options
author | Jonathan Maw <jonathan.maw@codethink.co.uk> | 2017-11-10 16:52:57 +0000 |
---|---|---|
committer | Jonathan Maw <jonathan.maw@codethink.co.uk> | 2017-11-14 13:03:53 +0000 |
commit | e616dd31c2600ccda36a368dd92bc94b0be6dbde (patch) | |
tree | c00d8d57bd2f2beffa550bc07c6e9cc5b2288c97 | |
parent | f4afbf5941ca1cd7c74cbc1d837e57e196f2f85e (diff) | |
download | buildstream-e616dd31c2600ccda36a368dd92bc94b0be6dbde.tar.gz |
compose.py: Use keyword args for utils.move_files
-rw-r--r-- | buildstream/plugins/elements/compose.py | 2 |
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') |