From dbf9f15f1a9febee3f6d9c3b7c42ab85cded225e Mon Sep 17 00:00:00 2001 From: Aditya Hase Date: Thu, 6 Dec 2018 16:03:22 +0530 Subject: [PATCH] fix(prepared-report): Fix typo in a comment --- frappe/desk/query_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 14953a7bdc..df23208913 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -100,7 +100,7 @@ def background_enqueue_run(report_name, filters=None, user=None): frappe.get_doc({ "doctype": "Prepared Report", "report_name": report_name, - # This looks like an insanity but, without this it'd be very hard to find Prepared Reports matvhing given condition + # This looks like an insanity but, without this it'd be very hard to find Prepared Reports matching given condition # We're ensuring that spacing is consistent. e.g. JS seems to put no spaces after ":", Python on the other hand does. "filters": json.dumps(json.loads(filters)), "ref_report_doctype": report_name,