We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3059b commit 84169e1Copy full SHA for 84169e1
1 file changed
cfbot_web.py
@@ -8,6 +8,7 @@
8
import unicodedata
9
from html import escape as html_escape
10
11
+import cfbot_commitfest_rpc
12
from cfbot_commitfest_rpc import Submission
13
14
# Define SVG content
@@ -551,12 +552,12 @@ def unique_authors(submissions):
551
552
if __name__ == "__main__":
553
with cfbot_util.db() as conn:
554
# rebuild(conn, commitfest_id)
- # commitfest_id = cfbot_commitfest_rpc.get_current_commitfest_id()
555
- submissions = load_submissions(conn, 42)
+ cfs = cfbot_commitfest_rpc.get_current_commitfests()
556
+ submissions = load_submissions(conn, cfs)
557
build_page(
558
conn,
559
"x",
- 42,
560
+ cfs,
561
submissions,
562
None,
563
0 commit comments