From aba2b7808faa17daffd0df4ba602a9c8ccf20937 Mon Sep 17 00:00:00 2001 From: Akash Date: Mon, 25 Mar 2024 18:10:41 +0530 Subject: [PATCH] fix: add missing arg while invoking _download_multi_pdf (cherry picked from commit f82ed9fe11831d78e612ccd5db189f61439f1026) --- frappe/utils/print_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/print_format.py b/frappe/utils/print_format.py index fde49db3a0..b0267e12ad 100644 --- a/frappe/utils/print_format.py +++ b/frappe/utils/print_format.py @@ -33,7 +33,7 @@ def download_multi_pdf( """ Calls _download_multi_pdf with the given parameters and returns the response """ - return _download_multi_pdf(doctype, name, format, no_letterhead, options) + return _download_multi_pdf(doctype, name, format, no_letterhead, letterhead, options) @frappe.whitelist()