Commit 144b92e4 authored by opitz's avatar opitz
Browse files

bugfix

parent 75227f20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ class HasCategoryNode(dict):
        dict.__init__(self, self.d)
    
    def __eq__(self, other):
        if not isinstance(other, HasCategoryNode):
        if not isinstance(other, type(self)):
            return False
        if not len(self.d) == len(other.d):
            return False