diff --git a/contribution_stats.py b/contribution_stats.py index efd3f5567..3caa4738e 100644 --- a/contribution_stats.py +++ b/contribution_stats.py @@ -67,7 +67,7 @@ def main(): for email, lines in email_counter.most_common(): percent = (lines / total_lines * 100) if total_lines else 0 - print(f"{email}: {lines} {percent:.2f}%") + print(f"{email}: {lines}/{total_lines} {percent:.2f}%") if __name__ == "__main__":