FSTrees shouldn't have a value

If a Tree() doesn't have a value, then the FSTree() shouldn't either...
This commit is contained in:
Bryan Schumaker 2010-11-09 19:44:58 -05:00
parent d15a4e2967
commit 27d3baef27
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ class Tree(dict):
class FSTree(Tree):
def __init__(self, value = None):
Tree.__init__(self, value)
def __init__(self):
Tree.__init__(self)
def walk_paths(self):
for path in self.walk():