Adds __str__ method to CNL operating system class.
This commit is contained in:
parent
4e6fdd12e2
commit
b1e6c58ff2
@ -19,6 +19,8 @@ def __init__(self):
|
|||||||
version = '10'
|
version = '10'
|
||||||
super(Cnl, self).__init__(name, version)
|
super(Cnl, self).__init__(name, version)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.name
|
||||||
|
|
||||||
def find_compilers(self, *paths):
|
def find_compilers(self, *paths):
|
||||||
types = spack.compilers.all_compiler_types()
|
types = spack.compilers.all_compiler_types()
|
||||||
|
Loading…
Reference in New Issue
Block a user