Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dir_content_diff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,10 @@ def compare_trees(
for pattern in v.pop("patterns", []):
pattern_specific_args[re.compile(pattern)] = v

# Build the comparator registry if not given
if comparators is None:
comparators = get_comparators()

# Loop over all files and call the correct comparator
different_files = {}
for ref_file in ref_path.glob("**/*"):
Expand Down