Opened 5 years ago
Closed 5 years ago
#30905 closed Bug (invalid)
render() got an unexpected keyword argument 'renderer'.
Reported by: | Vinay Kumar | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | 2.2 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Django 2.2.6
Python 3.8.0
Error traceback.
Request Method: GET
Request URL: http://localhost:8000/userprofile/1/
Django Version: 2.2.6
Exception Type: TypeError
Exception Value:
render() got an unexpected keyword argument 'renderer'
Exception Location: /usr/local/lib/python3.8/site-packages/django/forms/boundfield.py in as_widget, line 89
Python Executable: /usr/local/bin/python
Python Version: 3.8.0
Change History (1)
comment:1 by , 5 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Summary: | render() got an unexpected keyword argument 'renderer' → render() got an unexpected keyword argument 'renderer'. |
Note:
See TracTickets
for help on using tickets.
Support for
Widget.render()
without therenderer
argument was removed in 2bd207ada0367debe8c8e298203435d5c88c14bd. You are probably using a custom widget that doesn't accept this argument.