Fixed silly typo that gave errors in tests

This commit is contained in:
Mario Melara 2016-02-17 14:44:38 -08:00
parent a3039c4c67
commit 2a79537ba1

View file

@ -36,8 +36,8 @@ class ABI(object):
def architecture_compatible(self, parent, child):
"""Returns true iff the parent and child specs have ABI compatible targets."""
return not parent.architecture or not \
child.achitecture or parent.architecture == child.architecture
return not parent.architecture or not child.architecture \
or parent.architecture == child.architecture
@memoized