fix LocalizedValue.deconstruct (wrong module name)

This commit is contained in:
Dmitry Groshev 2018-01-31 23:59:48 +00:00 committed by GitHub
parent d8eb3394d0
commit 2a29efdf14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ class LocalizedValue(dict):
contained in this instance.
"""
path = 'localized_fields.localized_value.%s' % self.__class__.__name__
path = 'localized_fields.value.%s' % self.__class__.__name__
return path, [self.__dict__], {}
def _interpret_value(self, value):