From 3bc4daf1edc121cd633429187392227f2fa61885 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Thu, 8 Jul 2021 19:44:27 -0700 Subject: Lots of changes. --- file_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'file_utils.py') diff --git a/file_utils.py b/file_utils.py index 7cc8b63..7108d6a 100644 --- a/file_utils.py +++ b/file_utils.py @@ -244,5 +244,5 @@ def get_files_recursive(directory: str): for filename in get_files(directory): yield filename for subdir in get_directories(directory): - for filename in get_files_recursive(subdir): - yield filename + for file_or_directory in get_files_recursive(subdir): + yield file_or_directory -- cgit v1.3