diff --git a/rest_framework/fields.py b/rest_framework/fields.py index 13b5145ba..de279f292 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -422,7 +422,7 @@ class Field(object): if getattr(self.root, 'partial', False): return empty return self.default_empty_html - ret = dictionary[self.field_name] + ret = dictionary.getlist(self.field_name) if ret == '' and self.allow_null: # If the field is blank, and null is a valid value then # determine if we should use null instead.