Merge pull request #1073 from mjtamlyn/import_by_path-docs-fix

Made the example usage of import_by_path less confusing.
This commit is contained in:
Tim Graham 2013-05-16 04:14:33 -07:00
commit da9d626be0
1 changed files with 2 additions and 2 deletions

View File

@ -659,11 +659,11 @@ Functions for working with Python modules.
wrong. For example::
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::
from django.utils.module_loading import import_by_path
from django.core.exceptions import ImproperlyConfigured
``django.utils.safestring``
===========================