소스 검색

Corrected typo.

Taddeus Kroes 14 년 전
부모
커밋
730afc4aca
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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: