[Bf-blender-cvs] [633cd3c] blender-v2.72-release: Freestyle: Fix for a typo in the definition of NotBP1D.

Tamito Kajiyama noreply at git.blender.org
Fri Oct 3 15:24:45 CEST 2014


Commit: 633cd3c439467d56809f77b8c48a6dea6d663847
Author: Tamito Kajiyama
Date:   Wed Oct 1 15:32:46 2014 +0900
Branches: blender-v2.72-release
https://developer.blender.org/rB633cd3c439467d56809f77b8c48a6dea6d663847

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.

===================================================================

M	release/scripts/freestyle/modules/freestyle/predicates.py

===================================================================

diff --git a/release/scripts/freestyle/modules/freestyle/predicates.py b/release/scripts/freestyle/modules/freestyle/predicates.py
index 68ec9e0..9b66575 100644
--- a/release/scripts/freestyle/modules/freestyle/predicates.py
+++ b/release/scripts/freestyle/modules/freestyle/predicates.py
@@ -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):




More information about the Bf-blender-cvs mailing list