Merge "Fix can't open the NGT creating form"

This commit is contained in:
Jenkins 2017-08-01 13:08:40 +00:00 committed by Gerrit Code Review
commit e73f9ec7c6
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ class CheckboxSelectMultiple(forms.CheckboxSelectMultiple):
if value is None:
value = []
has_id = attrs and 'id' in attrs
final_attrs = self.build_attrs(attrs, name=name)
final_attrs = self.build_attrs(attrs, {'name': name})
output = []
initial_service = uuidutils.generate_uuid()
str_values = set([encoding.force_text(v) for v in value])