diff --git a/django/contrib/admin/views/main.py b/django/contrib/admin/views/main.py index a3a7ddfb18..f719c04e5c 100644 --- a/django/contrib/admin/views/main.py +++ b/django/contrib/admin/views/main.py @@ -429,8 +429,9 @@ def add_stage(request, app_label, module_name, show_delete=False, form_url='', p # Add default data. new_data = manipulator.flatten_data() - # Override the defaults with request.GET, if it exists. - new_data.update(request.GET) + # Override the defaults with GET params, if they exist. + new_data.update(dict(request.GET.items())) + errors = {} # Populate the FormWrapper.