summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-06 17:27:13 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-06 17:27:13 +0000
commiteaa8db131ddc06b0ed0d8c618979ad9467a0e37e (patch)
tree3b7ceea0e137189fc7289b0d5ddc0f520eae0d4e /docs
parentc8930e3af441c68973e96b0afc0361357365bb0d (diff)
Changed docs/django-admin.txt to add a link to diveintopython's explanation of Python import search path
git-svn-id: http://code.djangoproject.com/svn/django/trunk@794 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/django-admin.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 188dd4295c..130a734567 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -200,8 +200,11 @@ Example usage::
django-admin.py init --pythonpath='/home/djangoprojects/myproject'
-Adds the given filesystem path to the Python path. If this isn't provided,
-``django-admin.py`` will use the ``PYTHONPATH`` environment variable.
+Adds the given filesystem path to the Python `import search path`_. If this
+isn't provided, ``django-admin.py`` will use the ``PYTHONPATH`` environment
+variable.
+
+.. _import search path: http://diveintopython.org/getting_to_know_python/everything_is_an_object.html
--help
======