Skip to content
Snippets Groups Projects
Commit dc3b54a6 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Merge pull request #233 from LLNL/bugfix/206-value-error

Fix #206: need to make deps AND root concrete when read in.
parents 3d39d035 6e074a19
No related branches found
No related tags found
No related merge requests found
...@@ -212,8 +212,10 @@ def read_spec(self, path): ...@@ -212,8 +212,10 @@ def read_spec(self, path):
spec = Spec.from_yaml(f) spec = Spec.from_yaml(f)
# Specs read from actual installations are always concrete # Specs read from actual installations are always concrete
spec._normal = True for s in spec.traverse():
spec._concrete = True s._normal = True
s._concrete = True
return spec return spec
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment