From ed1c15d8fbc17e60621ca56f67340987531e647d Mon Sep 17 00:00:00 2001 From: "Md. Sadaf Noor" Date: Sat, 2 Jul 2016 16:52:36 +0600 Subject: [PATCH] Fixed #26829 -- Simplified version detection command in tutorial --- docs/intro/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index ba50451d95..9710be7480 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -17,7 +17,7 @@ tell Django is installed and which version by running the following command: .. code-block:: console - $ python -c "import django; print(django.get_version())" + $ python -m django --version If Django is installed, you should see the version of your installation. If it isn't, you'll get an error telling "No module named django".