We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b82c035 commit 6f3f65fCopy full SHA for 6f3f65f
mkdocs_git_authors_plugin/git/page.py
@@ -64,7 +64,6 @@ def get_authors(self):
64
self._authors = sorted(self._authors, key=repo._sort_key, reverse=reverse)
65
self._sorted = True
66
author_threshold = repo.config("authorship_threshold_percent")
67
- print(f"threshold={author_threshold}", f"authors={self._authors}")
68
if author_threshold > 0 and len(self._authors) > 1:
69
self._authors = [a for a in self._authors if a.contribution()*100 > author_threshold]
70
return self._authors
0 commit comments