From 517dc6be8b04509f0dcba609c75a218c1ba75080 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Wed, 24 May 2017 09:59:51 +0100 Subject: [PATCH] Typo removed. Wrong window focus --- app/dao/notification_usage_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dao/notification_usage_dao.py b/app/dao/notification_usage_dao.py index f40c6fe8b..b3b582ed3 100644 --- a/app/dao/notification_usage_dao.py +++ b/app/dao/notification_usage_dao.py @@ -176,7 +176,7 @@ def get_total_billable_units_for_sent_sms_notifications_in_date_range(start_date ) billable_units_by_rate_boundry = result.scalar() if billable_units_by_rate_boundry: - billable_units += int(billable_units_by_rate_boundry)vi end_date + billable_units += int(billable_units_by_rate_boundry) total_cost += int(billable_units_by_rate_boundry) * rate_boundary['rate'] return billable_units, total_cost