Freestyle: Fix for a typo in the definition of NotBP1D.

This is a safe fix for a regression from 2.71, so should be back ported to 2.72.
This commit is contained in:
Tamito Kajiyama 2014-10-01 15:32:46 +09:00
parent 832f54a1aa
commit 55aa42ad6f

@ -584,7 +584,7 @@ class NotBP1D(BinaryPredicate1D):
self._predicate = predicate self._predicate = predicate
def __call__(self, i1, i2): def __call__(self, i1, i2):
return (not self._precicate(i1, i2)) return (not self._predicate(i1, i2))
class pyZBP1D(BinaryPredicate1D): class pyZBP1D(BinaryPredicate1D):