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 committed by Sergey Sharybin
parent 5358026368
commit 633cd3c439
1 changed files with 1 additions and 1 deletions

View File

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