commit | a094c0f3f162f863d6c6aca284d790a215db0fcc | [log] [tgz] |
---|---|---|
author | Prateeksha Singh <pratu16x7@gmail.com> | Sun Sep 02 19:45:56 2018 +0530 |
committer | Prateeksha Singh <pratu16x7@gmail.com> | Sun Sep 02 19:45:56 2018 +0530 |
tree | dd0e2b9a040e1d77f9204830dd30ee2cc7f46fe8 | |
parent | 68129df74c38bbdb93c4959e5bb3fbf6347e1e65 [diff] |
[fix] encrypted password in Hub User child record by frappe/frappe#6048 - use save() instead of insert()
diff --git a/erpnext/hub_node/doctype/marketplace_settings/marketplace_settings.py b/erpnext/hub_node/doctype/marketplace_settings/marketplace_settings.py index a9dfe8a..482efad 100644 --- a/erpnext/hub_node/doctype/marketplace_settings/marketplace_settings.py +++ b/erpnext/hub_node/doctype/marketplace_settings/marketplace_settings.py
@@ -65,7 +65,7 @@ 'password': hub_user.get('password') }) - self.insert() + self.save() def get_hub_user(self, user): '''Return the Hub User doc from the `users` table if password is set'''