Fixed silly typo that gave errors in tests
This commit is contained in:
parent
a3039c4c67
commit
2a79537ba1
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue