summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorsaschalalala <saschalalala@users.noreply.github.com>2015-03-06 10:57:06 +0100
committerTim Graham <timograham@gmail.com>2015-03-11 10:34:58 -0400
commit5cf8f4596cd17f7a6096f7d5df92dde038cb12bf (patch)
tree353375c4428e2860140b3c89756bf33681e6c7de /docs/topics
parent3ed9c7bdfe9f40d31dadb6734a5692c8b9d6d6dc (diff)
Simplified command to display path to Django source files.
Python 3 always returns an absolute path.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/install.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/install.txt b/docs/topics/install.txt
index ab26e8e003..4422698576 100644
--- a/docs/topics/install.txt
+++ b/docs/topics/install.txt
@@ -142,7 +142,7 @@ following at your shell prompt (not the interactive Python prompt):
.. code-block:: console
- $ python -c "import sys; sys.path = sys.path[1:]; import django; print(django.__path__)"
+ $ python -c "import django; print(django.__path__)"
.. _install-django-code: