diff --git a/image_list.py b/image_list.py index 94de238..8a89385 100755 --- a/image_list.py +++ b/image_list.py @@ -88,9 +88,11 @@ def add_recurse(options): conn.text_factory=str db=conn.cursor() for path,dirs,files in os.walk(options.startpath,followlinks=options.symlinks): + print('Checking '+path) dirs=clean_dirs(dirs) if not options.symlinks: files=clean_syms(files) + files.sort() for file in files: if IMGMATCH.match(file): filename=os.path.abspath(os.path.join(path,file))