From 5c8a530384f3ce728766067a9bf99e8fd7332bd2 Mon Sep 17 00:00:00 2001 From: Syed Qadeer Date: Wed, 23 Oct 2013 06:35:42 +0300 Subject: [PATCH] Fixed minor code in build_from_query_report --- webnotes/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webnotes/translate.py b/webnotes/translate.py index 81207807b6..ae8568928d 100644 --- a/webnotes/translate.py +++ b/webnotes/translate.py @@ -138,7 +138,7 @@ def build_from_query_report(): messages.append(item.report_name) module = get_doctype_module(item.ref_doctype) if module : - doctype_path = get_doc_path(module, "report", item.report_name) + doctype_path = get_doc_path(module, "Report", item.report_name) write_messages_file(doctype_path, messages, 'js') def build_from_database():