aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorEric Buehl2014-03-06 20:21:27 +0000
committerEric Buehl2014-03-06 20:21:27 +0000
commit86375f2d9506bcd3c95cb9901d2237672a47da3f (patch)
tree55dcac0cbfc105bd318ca1c4f8743e8caaec4eda /rest_framework
parente0682e9298092721c0d3eb358ce4be8039e7ccf6 (diff)
parentef94861c2d31592c3760a0c0758beb084f452c03 (diff)
downloaddjango-rest-framework-86375f2d9506bcd3c95cb9901d2237672a47da3f.tar.bz2
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/__init__.py4
-rw-r--r--rest_framework/serializers.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py
index 6759680b..2d76b55d 100644
--- a/rest_framework/__init__.py
+++ b/rest_framework/__init__.py
@@ -8,10 +8,10 @@ ______ _____ _____ _____ __ _
"""
__title__ = 'Django REST framework'
-__version__ = '2.3.12'
+__version__ = '2.3.13'
__author__ = 'Tom Christie'
__license__ = 'BSD 2-Clause'
-__copyright__ = 'Copyright 2011-2013 Tom Christie'
+__copyright__ = 'Copyright 2011-2014 Tom Christie'
# Version synonym
VERSION = __version__
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py
index 10256d47..c95b0593 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -758,7 +758,7 @@ class ModelSerializer(Serializer):
ret[accessor_name] = field
- # Add the `read_only` flag to any fields that have bee specified
+ # Add the `read_only` flag to any fields that have been specified
# in the `read_only_fields` option
for field_name in self.opts.read_only_fields:
assert field_name not in self.base_fields.keys(), (