From 6e92958578e46f92d78cd60453dbedc4767a6f93 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Wed, 16 May 2018 16:11:20 +0530 Subject: [PATCH] spaces to tabs --- erpnext/accounts/doctype/sales_invoice/sales_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py index 031e320012..190b707e40 100644 --- a/erpnext/accounts/doctype/sales_invoice/sales_invoice.py +++ b/erpnext/accounts/doctype/sales_invoice/sales_invoice.py @@ -1028,7 +1028,7 @@ def update_linked_invoice(doctype, name, inter_company_invoice_reference): def unlink_inter_company_invoice(doctype, name, inter_company_invoice_reference): ref_doc = "Purchase Invoice" if doctype == "Sales Invoice" else "Sales Invoice" if inter_company_invoice_reference: - frappe.db.set_value(doctype, name,\ + frappe.db.set_value(doctype, name,\ "inter_company_invoice_reference", "") frappe.db.set_value(ref_doc, inter_company_invoice_reference,\ "inter_company_invoice_reference", "")