diff options
| author | Tom Christie | 2014-10-16 20:45:36 +0100 | 
|---|---|---|
| committer | Tom Christie | 2014-10-16 20:47:57 +0100 | 
| commit | 32fd82ba0d6082418e5ca5633f9e9709bd44e86b (patch) | |
| tree | d24903befa7f9115dd3b749a02e94022058c8051 /rest_framework/fields.py | |
| parent | 7b666e982c461e237567435851dcc93bc76581e5 (diff) | |
| download | django-rest-framework-32fd82ba0d6082418e5ca5633f9e9709bd44e86b.tar.bz2 | |
get_attribute method on fields
Diffstat (limited to 'rest_framework/fields.py')
| -rw-r--r-- | rest_framework/fields.py | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/rest_framework/fields.py b/rest_framework/fields.py index 24dfaaf5..597d5e12 100644 --- a/rest_framework/fields.py +++ b/rest_framework/fields.py @@ -212,15 +212,12 @@ class Field(object):              return self.default_empty_html if (ret == '') else ret          return dictionary.get(self.field_name, empty) -    def get_field_representation(self, instance): +    def get_attribute(self, instance):          """ -        Given the outgoing object instance, return the primitive value +        Given the *outgoing* object instance, return the primitive value          that should be used for this field.          """ -        attribute = get_attribute(instance, self.source_attrs) -        if attribute is None: -            return None -        return self.to_representation(attribute) +        return get_attribute(instance, self.source_attrs)      def get_default(self):          """ | 
