diff --git a/frappe/handler.py b/frappe/handler.py index 8d0c18a00b..9d32b0acee 100755 --- a/frappe/handler.py +++ b/frappe/handler.py @@ -53,7 +53,7 @@ def execute_cmd(cmd, from_async=False): try: method = get_attr(cmd) except Exception as e: - frappe.throw(_('Invalid Method')) + frappe.throw(_('Failed to get method for command {0} with {1}').format(cmd, e)) if from_async: method = method.queue