Changed architecture to dict
This commit is contained in:
parent
90e90f61c1
commit
e46bac19fa
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ def to_node_dict(self):
|
||||||
if self.architecture:
|
if self.architecture:
|
||||||
# TODO: Fix the target.to_dict to account for the tuple
|
# TODO: Fix the target.to_dict to account for the tuple
|
||||||
# Want it to be a dict of dicts
|
# Want it to be a dict of dicts
|
||||||
d['architecture'] = spack.architecture.to_dict(self.architecture)
|
d['architecture'] = self.architecture.to_dict()
|
||||||
else:
|
else:
|
||||||
d['architecture'] = None
|
d['architecture'] = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue