summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-09-22 13:14:18 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-10-08 17:03:36 +0900
commit8c6e8e1661531267e1715edf67e14678ab845ce8 (patch)
tree0861c3604de78cecc44548b0a164165918d0bc78
parentcb8c7901b359704cabf44564f80bc58065df53ca (diff)
downloadbuildstream-8c6e8e1661531267e1715edf67e14678ab845ce8.tar.gz
_metaelement.py: No more variant attribute to carry
-rw-r--r--buildstream/_metaelement.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/buildstream/_metaelement.py b/buildstream/_metaelement.py
index d7462cc4b..bc8f36a71 100644
--- a/buildstream/_metaelement.py
+++ b/buildstream/_metaelement.py
@@ -28,7 +28,6 @@ class MetaElement():
# Args:
# name: The resolved element name
# kind: The element kind
- # variant: The element variant, or None
# provenance: The provenance of the element
# sources: An array of MetaSource objects
# config: The configuration data for the element
@@ -37,9 +36,8 @@ class MetaElement():
# env_nocache: List of environment vars which should not be considered in cache keys
# public: Public domain data dictionary
#
- def __init__(self, name, kind, variant, provenance, sources, config, variables, environment, env_nocache, public):
+ def __init__(self, name, kind, provenance, sources, config, variables, environment, env_nocache, public):
self.name = name
- self.variant = variant
self.kind = kind
self.provenance = provenance
self.sources = sources