erm, remove kwargs

This commit is contained in:
sanj 2010-07-29 00:06:17 +05:30
parent f082cd6e36
commit 51bb380405

View File

@ -25,7 +25,7 @@ def spider(path, fn, **kwargs):
for filename in filenames:
if not filename.startswith('._') and not filename in ('.DS_Store', ):
# print dirpath + " + " + filename
fn(dirpath, filename, kwargs)
fn(dirpath, filename)
def mvFile(dirpath, filename):
path = os.path.join(dirpath, filename)