[Bf-extensions-cvs] [7223289] master: Fix T39342: Typo in Node wrangler image sequence node.

Bastien Montagne noreply at git.blender.org
Sat Mar 22 18:00:30 CET 2014


Commit: 7223289719d89288a714b90b14ef372e6eb7a4d3
Author: Bastien Montagne
Date:   Sat Mar 22 17:59:30 2014 +0100
https://developer.blender.org/rBA7223289719d89288a714b90b14ef372e6eb7a4d3

Fix T39342: Typo in Node wrangler image sequence node.

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

M	node_efficiency_tools.py

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

diff --git a/node_efficiency_tools.py b/node_efficiency_tools.py
index 757efa6..fc4fe28 100644
--- a/node_efficiency_tools.py
+++ b/node_efficiency_tools.py
@@ -2730,7 +2730,7 @@ class NWAddSequence(Operator, ImportHelper):
 
         nodes_list = [node for node in nodes]
         if nodes_list:
-            Anodes_list.sort(key=lambda k: k.location.x)
+            nodes_list.sort(key=lambda k: k.location.x)
             xloc = nodes_list[0].location.x - 220  # place new nodes at far left
             yloc = 0
             for node in nodes:



More information about the Bf-extensions-cvs mailing list