Merge pull request #492 from adamjstewart/typos/compiler

Typo fix in compiler docstring
This commit is contained in:
becker33 2016-03-04 14:25:56 -08:00
commit 6449e8b1b9

View File

@ -256,12 +256,12 @@ def find(cls, *path):
def __repr__(self):
"""Return a string represntation of the compiler toolchain."""
"""Return a string representation of the compiler toolchain."""
return self.__str__()
def __str__(self):
"""Return a string represntation of the compiler toolchain."""
"""Return a string representation of the compiler toolchain."""
return "%s(%s)" % (
self.name, '\n '.join((str(s) for s in (self.cc, self.cxx, self.f77, self.fc))))