1
0
Fork 0

Oups, fix the build

This commit is contained in:
jvoisin 2018-04-04 23:18:32 +02:00
parent 972de8469e
commit d830760d4f
1 changed files with 3 additions and 4 deletions

View File

@ -1,13 +1,12 @@
#!/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)