From 3ecab13005fb1e6209a6bae11c39843515e03c3e Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 4 Jul 2016 16:21:10 -0400 Subject: [PATCH] Fix typo --- fosspay/blueprints/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fosspay/blueprints/html.py b/fosspay/blueprints/html.py index 1f4cb94..0daecb6 100644 --- a/fosspay/blueprints/html.py +++ b/fosspay/blueprints/html.py @@ -64,7 +64,7 @@ def admin(): unspecified_one_times=sum([d.amount for d in unspecified if d.type == DonationType.one_time]), unspecified_recurring=sum([d.amount for d in unspecified if d.type == DonationType.monthly]), total_one_time=sum([d.amount for d in Donation.query.filter(Donation.type == DonationType.one_time)]), - total_recurring=sum([d.amount for d in Donation.query.filter(Donation.type == DonationType.recurring)]), + total_recurring=sum([d.amount for d in Donation.query.filter(Donation.type == DonationType.monthly)]), ) @html.route("/create-project", methods=["POST"])