We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec9fc3d + 04159b2 commit 03ec575Copy full SHA for 03ec575
1 file changed
dir_content_diff/__init__.py
@@ -341,6 +341,11 @@ def compare_trees(
341
ignore_patterns = []
342
else:
343
ignore_patterns = [re.compile(i) for i in ignore_patterns]
344
+
345
+ # Build the comparator registry if not given
346
+ if comparators is None:
347
+ comparators = get_comparators()
348
349
350
# Loop over all files and call the correct comparator
351
different_files = {}
0 commit comments