diff --git a/filebot.py b/filebot.py index 24d136f..86773ad 100644 --- a/filebot.py +++ b/filebot.py @@ -19,6 +19,7 @@ print("Checking if rar files and unraring...") for section in section_folders: if os.path.exists(os.path.join(source_path, section)): for dir in os.listdir(os.path.join(source_path, section)): + print(f"Found dir: {dir}") unrar_sys_package = '/usr/bin/unrar' rar_file = glob(f"{os.path.join(source_path, section, dir, '')}*rar") print(f"Found rar file: {rar_file}")