From 1801cc8962a5a2e65d8f7c0025fc8f4dba82967a Mon Sep 17 00:00:00 2001 From: Prateeksha Singh Date: Sat, 1 Sep 2018 00:39:08 +0530 Subject: [PATCH] [fix] hub_url -> marketplace_url --- erpnext/hub_node/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/hub_node/api.py b/erpnext/hub_node/api.py index 84ec3a16b02..b9a3295d01e 100644 --- a/erpnext/hub_node/api.py +++ b/erpnext/hub_node/api.py @@ -203,8 +203,8 @@ def get_hub_connection(): # read-only connection if read_only: - hub_url = frappe.db.get_single_value('Marketplace Settings', 'hub_url') - hub_connection = FrappeClient(hub_url) + marketplace_url = frappe.db.get_single_value('Marketplace Settings', 'marketplace_url') + hub_connection = FrappeClient(marketplace_url) return hub_connection def get_field_mappings():