Skip to content

Commit

Permalink
Merge pull request #1379 from xael-fry/pr/1238
Browse files Browse the repository at this point in the history
Fix pull request Pr/1238
  • Loading branch information
xael-fry authored Jan 31, 2022
2 parents a0919c6 + cb6eda1 commit ed2368b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/pym/play/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def isExcluded(path, exclusion_list = None):
if exclusion_list is None:
return False
for exclusion in exclusion_list:
if isParentOf(exclusion, path):
if isParentOf(exclusion, path) or exclusion == path:
return True
return False

Expand Down

0 comments on commit ed2368b

Please sign in to comment.