From 7223289719d89288a714b90b14ef372e6eb7a4d3 Mon Sep 17 00:00:00 2001
From: Bastien Montagne <montagne29@wanadoo.fr>
Date: Sat, 22 Mar 2014 17:59:30 +0100
Subject: [PATCH] Fix T39342: Typo in Node wrangler image sequence node.

---
 node_efficiency_tools.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/node_efficiency_tools.py b/node_efficiency_tools.py
index 757efa62a..fc4fe2815 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:
-- 
GitLab