summaryrefslogtreecommitdiff
path: root/buildstream/plugins/sources/local.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/plugins/sources/local.py')
-rw-r--r--buildstream/plugins/sources/local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/plugins/sources/local.py b/buildstream/plugins/sources/local.py
index bdda91e2f..50df85427 100644
--- a/buildstream/plugins/sources/local.py
+++ b/buildstream/plugins/sources/local.py
@@ -52,7 +52,7 @@ class LocalSource(Source):
self.__unique_key = None
def configure(self, node):
- self.node_validate(node, ['path'] + Source.COMMON_CONFIG_KEYS)
+ self.node_validate(node, ['path', *Source.COMMON_CONFIG_KEYS])
self.path = self.node_get_project_path(node, 'path')
self.fullpath = os.path.join(self.get_project_directory(), self.path)