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

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):