This document records all notable changes to fnpdjango.
+## 0.4.1 (2019-09-27)
+
+- Make `utils.settings.LazyUGettextLazy` a `django.utils.functional.Promise`
+ so it deconstructs nicely.
+
+
## 0.4 (2019-04-03)
- Support for Django up to 2.2.
Utilities for global settings.
"""
from django.utils.encoding import python_2_unicode_compatible
+from django.utils.functional import Promise
# Use Python3 str.
try:
@python_2_unicode_compatible
-class LazyUGettextLazy(object):
+class LazyUGettextLazy(Promise):
"""You can use it to internationalize strings in settings.
Just import this class as gettext.