0
0
Fork 0

me-main #1

Merged
Nate Rupsis merged 123 commits from me-main into main 2023-02-13 18:39:11 +01:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit fefc6a73b3 - Show all commits

View File

@ -29,6 +29,8 @@ def file_list_py(path):
for dirpath, dirnames, filenames in os.walk(path):
dirnames[:] = [d for d in dirnames if not d.startswith(".")]
for filename in filenames:
if filename.startswith("."):
continue
if filename.endswith((".py", ".cfg")):
yield os.path.join(dirpath, filename)