Typo fix in compiler docstring

This commit is contained in:
Adam J. Stewart 2016-03-04 10:51:41 -06:00
parent 5af543dc4a
commit 5db9673904

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))))