summaryrefslogtreecommitdiff
path: root/buildstream/_loader/metasource.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_loader/metasource.py')
-rw-r--r--buildstream/_loader/metasource.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/buildstream/_loader/metasource.py b/buildstream/_loader/metasource.py
index 5f3fa3608..75e191595 100644
--- a/buildstream/_loader/metasource.py
+++ b/buildstream/_loader/metasource.py
@@ -28,12 +28,14 @@ class MetaSource():
# Args:
# element_name: The name of the owning element
# element_index: The index of the source in the owning element's source list
+ # element_kind: The kind of the owning element
# kind: The kind of the source
# config: The configuration data for the source
#
- def __init__(self, element_name, element_index, kind, config, directory):
+ def __init__(self, element_name, element_index, element_kind, kind, config, directory):
self.element_name = element_name
self.element_index = element_index
+ self.element_kind = element_kind
self.kind = kind
self.config = config
self.directory = directory