fix(prepared-report): Fix typo in a comment

This commit is contained in:
Aditya Hase 2018-12-06 16:03:22 +05:30
parent 49e5d4e21f
commit dbf9f15f1a

View file

@ -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,