summaryrefslogtreecommitdiff
path: root/django/forms/boundfield.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms/boundfield.py')
-rw-r--r--django/forms/boundfield.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/forms/boundfield.py b/django/forms/boundfield.py
index dba54e588a..27e80c65e7 100644
--- a/django/forms/boundfield.py
+++ b/django/forms/boundfield.py
@@ -153,7 +153,7 @@ class BoundField:
if id_:
id_for_label = widget.id_for_label(id_)
if id_for_label:
- attrs = dict(attrs or {}, **{'for': id_for_label})
+ attrs = {**(attrs or {}), 'for': id_for_label}
if self.field.required and hasattr(self.form, 'required_css_class'):
attrs = attrs or {}
if 'class' in attrs: