mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-10-29 18:18:57 +03:00
fix LocalizedValue.deconstruct (wrong module name)
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user