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

Oups, fix the build

parent 972de846
Branches traduccion/red_plenty
No related tags found
No related merge requests found
#!/usr/bin/python3
import os
import sys
import mimetypes
from shutil import copyfile
import argparse
from src import parser_factory
def __check_file(filename:str, mode:int = os.R_OK) -> bool:
if not os.path.isfile(filename):
print("[-] %s is not a regular file." % filename)
......@@ -83,10 +82,10 @@ def main():
return
if args.show:
for f in get_files_recursively(args.files):
for f in __get_files_recursively(args.files):
show_meta(f)
else:
for f in get_files_recursively(args.files):
for f in __get_files_recursively(args.files):
clean_meta(f)
......
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