From 27d3baef274dc6c80383406b01a10387169d59cf Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Tue, 9 Nov 2010 19:44:58 -0500 Subject: [PATCH] FSTrees shouldn't have a value If a Tree() doesn't have a value, then the FSTree() shouldn't either... --- libsaria/trees.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsaria/trees.py b/libsaria/trees.py index 9cda1e0c..ae03a80e 100644 --- a/libsaria/trees.py +++ b/libsaria/trees.py @@ -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():