commit | 9d29ec8eac9b0266bd8c5c5afd5415127e09b68d | [log] [tgz] |
---|---|---|
author | Raffael Meyer <14891507+barredterra@users.noreply.github.com> | Tue Aug 22 10:05:12 2023 +0200 |
committer | GitHub <noreply@github.com> | Tue Aug 22 13:35:12 2023 +0530 |
tree | 03226bbcd3c47778c836b08a7258cc65e58939c5 | |
parent | 8f04945cef6e39db2ee41a63e1006ca180aba963 [diff] |
fix: attachments should be an empty list by default (#36757) fix: attachments should be an empty list by default
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 8ea415d..6b39982 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py
@@ -205,7 +205,7 @@ if preview: return {"message": message, "subject": subject} - attachments = None + attachments = [] if self.send_attached_files: attachments = self.get_attachments()