Browse Source

Corrected typo.

Taddeus Kroes 14 years ago
parent
commit
730afc4aca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/node.py

+ 1 - 1
src/node.py

@@ -356,7 +356,7 @@ class Scope(object):
 
     def __eq__(self, other):
         return isinstance(other, Scope) and self.node == other.node \
-               and self.nodes == other.node
+               and self.nodes == other.nodes
 
     def remove(self, node, replacement=None):
         if node.is_leaf: