From 21cf83b915df76a8c033df6a0617f00d51dd009d Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Wed, 8 Apr 2026 17:19:43 +0530 Subject: [PATCH] refactor: update reset password method name (cherry picked from commit c4d74483e1895b4d10a7d28b808c2781e32b2428) --- .../doctype/request_for_quotation/request_for_quotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py index 1fc2cdf3386..09d7d30ab39 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py @@ -285,7 +285,7 @@ class RequestforQuotation(BuyingController): } ) user.save(ignore_permissions=True) - update_password_link = user.reset_password() + update_password_link = user._reset_password() return user, update_password_link