diff options
Diffstat (limited to 'src/test_files.py')
-rw-r--r-- | src/test_files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test_files.py b/src/test_files.py index 1eee11d..ef27606 100644 --- a/src/test_files.py +++ b/src/test_files.py @@ -78,7 +78,7 @@ check = { missing = [] no_result = [] -for directory, check_list in check.items(): +for directory, check_list in list(check.items()): if os.path.exists(directory): for c in check_list: f = os.path.join(directory, c) |