You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/12/13 23:38:01 UTC

[incubator-ponymail-foal] 01/02: nix debug print

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git

commit 6838fc0787e0273500fe0babc42dbee757fadbdf
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Tue Dec 14 00:37:40 2021 +0100

    nix debug print
---
 server/endpoints/stats.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/server/endpoints/stats.py b/server/endpoints/stats.py
index e5a1b26..75f46e3 100644
--- a/server/endpoints/stats.py
+++ b/server/endpoints/stats.py
@@ -95,7 +95,6 @@ async def process(
         # author entries are now [count, gravatar]
         # as we cannot reconstruct the correct gravatar from an anonymised address
         all_authors = sorted(authors.items(), key=lambda x: x[1][0], reverse=True)  # sort in reverse by author count
-        print(all_authors)
         top10_authors = []
         for author, data in all_authors[:10]:
             name, address = email.utils.parseaddr(author)