[Bf-blender-cvs] [55aa42a] master: Freestyle: Fix for a typo in the definition of NotBP1D.

Tamito Kajiyama noreply at git.blender.org
Wed Oct 1 09:02:05 CEST 2014


Commit: 55aa42ad6f10d663439f30acfa6a6c449aa97a95
Author: Tamito Kajiyama
Date:   Wed Oct 1 15:32:46 2014 +0900
Branches: master
https://developer.blender.org/rB55aa42ad6f10d663439f30acfa6a6c449aa97a95

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