Make the example usage of import_by_path less confusing.
Using import_by_path to import import_by_path is a really odd use case and makes the code example difficult to read.
This commit is contained in:
parent
63f6ee817e
commit
cde820bd31
|
@ -659,11 +659,11 @@ Functions for working with Python modules.
|
||||||
wrong. For example::
|
wrong. For example::
|
||||||
|
|
||||||
from django.utils.module_loading import import_by_path
|
from django.utils.module_loading import import_by_path
|
||||||
import_by_path = import_by_path('django.utils.module_loading.import_by_path')
|
ImproperlyConfigured = import_by_path('django.core.exceptions.ImproperlyConfigured')
|
||||||
|
|
||||||
is equivalent to::
|
is equivalent to::
|
||||||
|
|
||||||
from django.utils.module_loading import import_by_path
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|
||||||
``django.utils.safestring``
|
``django.utils.safestring``
|
||||||
===========================
|
===========================
|
||||||
|
|
Loading…
Reference in New Issue