From 299cdf071fe5e61cf83bd4fb8bccf59b1a6ed71d Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Tue, 12 Aug 2008 00:33:48 -0700 Subject: [PATCH] Fix DictFS to use auto-conversion convention --- routefs/dictfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routefs/dictfs.py b/routefs/dictfs.py index 595fded..b36c589 100644 --- a/routefs/dictfs.py +++ b/routefs/dictfs.py @@ -43,6 +43,6 @@ class DictFS(routefs.RouteFS): return if type(tree) is dict: - return routefs.Directory(tree.keys()) + return tree.keys() else: return tree -- 1.7.9.5