commit | 0671ea8137f2b8bae1a9f54606635a3f7bd470f5 | [log] [tgz] |
---|---|---|
author | 0Pranav <prnvnachnekar@gmail.com> | Thu Nov 07 13:31:56 2019 +0530 |
committer | 0Pranav <prnvnachnekar@gmail.com> | Thu Nov 07 13:31:56 2019 +0530 |
tree | 809c962a8dcaf4b61909df27cb2dc772dc240d33 | |
parent | 76b20a5fa4927a1821f511d921c6faaff6690eef [diff] |
use frappe.Redirect instead of DoesNotExistError
diff --git a/erpnext/www/book-appointment/index.py b/erpnext/www/book-appointment/index.py index 366f399..9765e5e 100644 --- a/erpnext/www/book-appointment/index.py +++ b/erpnext/www/book-appointment/index.py
@@ -14,7 +14,8 @@ if is_enabled: return context else: - raise frappe.DoesNotExistError + frappe.local.flags.redirect_location = '/404' + raise frappe.Redirect @frappe.whitelist(allow_guest=True) def get_appointment_settings():