Skip to content

Commit

Permalink
Merge PR #3045 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by legalsylvain
  • Loading branch information
OCA-git-bot committed Oct 3, 2024
2 parents 704fbef + 5c3856b commit 26de40c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module_analysis/models/ir_module_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _get_files_to_analyse(
if not path:
return res
for root, _, files in os.walk(path, followlinks=True):
if set(Path(root).parts) & set(exclude_directories):
if set(Path(root).relative_to(path).parts) & set(exclude_directories):
continue
for name in files:
if name in exclude_files:
Expand Down

0 comments on commit 26de40c

Please sign in to comment.