frappe.get_list("ToDo", fields="*", filters = [["modified", ">", "2014-01-01"]]) TypeError: execute() got an unexpected keyword argument 'reference_doctype'

Hi,
I am using ERPNext: v11.0.3-beta.33 () (staging) and Frappe Framework: v11.0.3-beta.47 () (staging). But when I try to select mode of payment or party type in payment entry I got this error log

Traceback (most recent call last):
File “/home/frappe/frappe-bench/apps/frappe/frappe/app.py”, line 61, in application
response = frappe.handler.handle()
File “/home/frappe/frappe-bench/apps/frappe/frappe/handler.py”, line 21, in handle
data = execute_cmd(cmd)
File “/home/frappe/frappe-bench/apps/frappe/frappe/handler.py”, line 56, in execute_cmd
return frappe.call(method, **frappe.form_dict)
File “/home/frappe/frappe-bench/apps/frappe/frappe/init.py”, line 1007, in call
“”“Call a function and match arguments.”“”
File “/home/frappe/frappe-bench/apps/frappe/frappe/desk/search.py”, line 53, in search_link
search_widget(doctype, txt, query, searchfield=searchfield, page_length=page_length, filters=filters, reference_doctype=reference_doctype, ignore_user_permissions=ignore_user_permissions)
File “/home/frappe/frappe-bench/apps/frappe/frappe/desk/search.py”, line 152, in search_widget
as_list=not as_dict)
File “/home/frappe/frappe-bench/apps/frappe/frappe/init.py”, line 1235, in get_list
frappe.get_list(“ToDo”, fields=“*”, filters = [[“modified”, “>”, “2014-01-01”]])
TypeError: execute() got an unexpected keyword argument ‘reference_doctype’

If anyone knows please help me

You have problem with the first argument (doctype name)!
try using single quotation
frappe.get_list('ToDo', fields="*", filters = [["modified", ">", "2014-01-01"]])