summaryrefslogtreecommitdiffstats
path: root/src/extension/extensiontest.py
diff options
context:
space:
mode:
authorFrederic Back <fredericback@gmail.com>2006-09-25 09:58:07 +0000
committerFrederic Back <fredericback@gmail.com>2006-09-25 09:58:07 +0000
commit7f2dd5a8fd39ca0147f2b43e607b2a3ca2a75110 (patch)
tree240518fdc030c86ea4b514d7fa6f0371f5318fbe /src/extension/extensiontest.py
parentdf25a4b6cb11afe8592560e5ccb2cd8f5121a9b9 (diff)
* use unsigned long for size
git-svn-id: file:///home/lennart/svn/public/fring/trunk@25 d0d2c35f-0a1e-0410-abeb-dabff30a67ee
Diffstat (limited to 'src/extension/extensiontest.py')
-rw-r--r--src/extension/extensiontest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/extension/extensiontest.py b/src/extension/extensiontest.py
index e95c7a3..cd4b6aa 100644
--- a/src/extension/extensiontest.py
+++ b/src/extension/extensiontest.py
@@ -13,6 +13,9 @@ else: tree_path = os.path.expanduser("~")
def read( t, tab=0 ):
fn, data, size = t
print " "*tab,fn,size
+
+ if tab>0: return
+
if not data: return
for e in data:
read(e,tab+1)
@@ -20,4 +23,5 @@ def read( t, tab=0 ):
print 'getting "%s":'%tree_path
i = fringtools.build_tree(tree_path, True)
print "done."
+
read(i)