Browse Source

bugfix: after refactoring, the getNode() method was called without self

damien 11 years ago
parent
commit
3e9d4534f8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pboard/pboard/lib/dbapi.py

+ 1 - 1
pboard/pboard/lib/dbapi.py View File

93
         # We suppose that the parent node has already been added
93
         # We suppose that the parent node has already been added
94
         # this *should* be the case, but the code does not check it
94
         # this *should* be the case, but the code does not check it
95
         if loTmpDict.has_key(loNode.parent_id)==False:
95
         if loTmpDict.has_key(loNode.parent_id)==False:
96
-          loTmpDict[loNode.parent_id] = getNode(loNode.parent_id)
96
+          loTmpDict[loNode.parent_id] = self.getNode(loNode.parent_id)
97
         loTmpDict[loNode.parent_id].appendStaticChild(loNode)
97
         loTmpDict[loNode.parent_id].appendStaticChild(loNode)
98
   
98
   
99
     return loTreeList
99
     return loTreeList