projects
/
invirt/packages/python-routefs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e655b0b
)
Fix DictFS to use auto-conversion convention
author
Evan Broder
<broder@mit.edu>
Tue, 12 Aug 2008 07:33:48 +0000
(
00:33
-0700)
committer
Evan Broder
<broder@mit.edu>
Tue, 12 Aug 2008 07:33:48 +0000
(
00:33
-0700)
routefs/dictfs.py
patch
|
blob
|
history
diff --git
a/routefs/dictfs.py
b/routefs/dictfs.py
index
595fded
..
b36c589
100644
(file)
--- 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