You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running a project with django-configurations and python -Wall shows this warning:
$ python -Wall manage.py help
<frozen importlib._bootstrap>:918: ImportWarning: ConfigurationLoader.exec_module() not found; falling back to load_module()
...
This is from Python’s frozen importlib reporting that Configurationloader uses the pre-PEP-451load_module() method, rather than the newer exec_module(). PEP 451 was merged in Python 3.4, so we can safely migrate to exec_module() and prevent that warning.
The text was updated successfully, but these errors were encountered:
Running a project with django-configurations and
python -Wall
shows this warning:This is from Python’s frozen
importlib
reporting thatConfigurationloader
uses the pre-PEP-451load_module()
method, rather than the newerexec_module()
. PEP 451 was merged in Python 3.4, so we can safely migrate toexec_module()
and prevent that warning.The text was updated successfully, but these errors were encountered: