From b13b9b4ed398694976e5278dd7a2db35bcd60bf2 Mon Sep 17 00:00:00 2001 From: Sagar Vora Date: Thu, 4 Oct 2018 11:39:20 +0530 Subject: [PATCH 1/2] fix TabError in install_fixtures.py --- erpnext/setup/setup_wizard/operations/install_fixtures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/setup/setup_wizard/operations/install_fixtures.py b/erpnext/setup/setup_wizard/operations/install_fixtures.py index 03c959b596..f7e2906da7 100644 --- a/erpnext/setup/setup_wizard/operations/install_fixtures.py +++ b/erpnext/setup/setup_wizard/operations/install_fixtures.py @@ -320,7 +320,7 @@ def add_sale_stages(): {"doctype": "Sales Stage", "stage_name": _("Proposal/Price Quote")}, {"doctype": "Sales Stage", "stage_name": _("Negotiation/Review")} ] - make_fixture_records(records) + make_fixture_records(records) def make_fixture_records(records): from frappe.modules import scrub From 2291558c5fa75271c2df7937f3aebab69b737b03 Mon Sep 17 00:00:00 2001 From: Ameya Shenoy Date: Thu, 4 Oct 2018 13:14:29 +0000 Subject: [PATCH 2/2] bumped to version 11.0.3-beta.4 --- erpnext/hooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 130398edac..c0bb6230ec 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -12,7 +12,7 @@ app_license = "GNU General Public License (v3)" source_link = "https://github.com/frappe/erpnext" develop_version = '11.x.x-develop' -staging_version = '11.0.3-beta.3' +staging_version = '11.0.3-beta.4' error_report_email = "support@erpnext.com"