Merge pull request #44 from si14/patch-4

fix LocalizedValue.deconstruct (wrong module name)
This commit is contained in:
Swen Kooij 2018-02-04 18:00:48 +02:00 committed by GitHub
commit 09cd0a8177
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. 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__], {} return path, [self.__dict__], {}
def _interpret_value(self, value): def _interpret_value(self, value):