Skip to content

Commit

Permalink
Merge PR #3079 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by legalsylvain
  • Loading branch information
OCA-git-bot committed Oct 16, 2024
2 parents 4c11359 + 3475285 commit 1c90eee
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 @@ -164,7 +164,7 @@ def _get_files_to_analyse(
if not path:
return res
for root, dirs, 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 1c90eee

Please sign in to comment.