Skip to content
Snippets Groups Projects
Commit c5f51345 authored by Julien (jvoisin) Voisin's avatar Julien (jvoisin) Voisin
Browse files

Fix the main.py file

parent 6893de6e
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ def __do_clean_async(is_lightweigth, q):
f = q.get()
if f is None: # nothing more to process
return
clean_meta(is_lightweigth, f)
clean_meta(f, is_lightweigth)
q.task_done()
......@@ -108,6 +108,7 @@ def main():
return
else: # Thread the cleaning
mode = (args.lightweight is True)
q = Queue(maxsize=0)
threads = list()
for f in __get_files_recursively(args.files):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment