Library scanning work

I have continued work on library scanning.
This commit is contained in:
Bryan Schumaker 2010-11-09 20:08:44 -05:00
parent dbc2d767d3
commit efa680af19
1 changed files with 5 additions and 1 deletions

View File

@ -151,8 +151,12 @@ def scan(path):
update()
save()
def update_path(path):
tree = libsaria.path.make_tree(path)
print path, len(tree)
def update():
global sources
sep = libsaria.path.sep
for path in sources.walk_paths():
print path
update_path(path)