Skip to content

Commit

Permalink
fix: determine contribution on page level
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasTNO committed Oct 30, 2023
1 parent 859a90e commit 973172d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkdocs_git_authors_plugin/git/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_authors(self):
self._authors = [
a
for a in self._authors
if a.contribution() * 100 > author_threshold
if a.contribution(self._path) * 100 > author_threshold
]
return self._authors

Expand Down

0 comments on commit 973172d

Please sign in to comment.