Commit a6531fed authored by BaiJiangJie's avatar BaiJiangJie

[Bugfix] 修复 TreeNode bug

parent e5250294
...@@ -51,7 +51,7 @@ class TreeNode: ...@@ -51,7 +51,7 @@ class TreeNode:
result = True result = True
elif self.pId != other.pId: elif self.pId != other.pId:
result = self.pId > other.pId result = self.pId > other.pId
elif self.id.startswith('-') and not other.id.startswith('-'): elif str(self.id).startswith('-') and not str(other.id).startswith('-'):
result = False result = False
else: else:
result = self.name > other.name result = self.name > other.name
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment