aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/fields.py
diff options
context:
space:
mode:
authorTom Christie2014-11-06 10:34:59 +0000
committerTom Christie2014-11-06 10:34:59 +0000
commited541864e637681e1aca3a808be1f26202b4c271 (patch)
tree1265e7355052b4c3dc78f0ecef16aad5540b5437 /rest_framework/fields.py
parent73daf407150b4d0c456b529c4d9bba0e035fc370 (diff)
downloaddjango-rest-framework-ed541864e637681e1aca3a808be1f26202b4c271.tar.bz2
Support for bulk create. Closes #1965.
Diffstat (limited to 'rest_framework/fields.py')
-rw-r--r--rest_framework/fields.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/fields.py b/rest_framework/fields.py
index b554f238..a9e2e48b 100644
--- a/rest_framework/fields.py
+++ b/rest_framework/fields.py
@@ -943,7 +943,7 @@ class ChoiceField(Field):
class MultipleChoiceField(ChoiceField):
default_error_messages = {
'invalid_choice': _('`{input}` is not a valid choice.'),
- 'not_a_list': _('Expected a list of items but got type `{input_type}`')
+ 'not_a_list': _('Expected a list of items but got type `{input_type}`.')
}
default_empty_html = []