summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial05.txt
diff options
context:
space:
mode:
authorMeta <petmetic@gmail.com>2024-08-07 16:07:22 -0300
committernessita <124304+nessita@users.noreply.github.com>2024-10-09 09:12:58 -0300
commitd2c74cfb48a3d29159732fb98e3c28a53572067f (patch)
tree135f6a2508937266eb946845450d197601e33ad7 /docs/intro/tutorial05.txt
parent2e3bc59fd3760de87952ec8fd6cd3694e8d9dc1c (diff)
Fixed #35502 -- Removed duplication of "mysite" directory name in intro docs.
Reorganized intro docs when explaining `django-admin startproject` to prevent confusion when using "mysite" as both the top-level directory and the Django project directory name. Co-authored-by: Natalia <124304+nessita@users.noreply.github.com> Co-authored-by: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Co-authored-by: Carlton Gibson <carlton@noumenal.es>
Diffstat (limited to 'docs/intro/tutorial05.txt')
-rw-r--r--docs/intro/tutorial05.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index 5f501ce92f..28a634b8c3 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -216,7 +216,7 @@ and you'll see something like:
FAIL: test_was_published_recently_with_future_question (polls.tests.QuestionModelTests)
----------------------------------------------------------------------
Traceback (most recent call last):
- File "/path/to/mysite/polls/tests.py", line 16, in test_was_published_recently_with_future_question
+ File "/path/to/djangotutorial/polls/tests.py", line 16, in test_was_published_recently_with_future_question
self.assertIs(future_question.was_published_recently(), False)
AssertionError: True is not False