Opened 2 months ago
Last modified 7 weeks ago
#36625 closed Cleanup/optimization
Please mention quit() when instucting the user to "restart the shell" in tutorial 2 — at Version 1
| Reported by: | Charles Severance | Owned by: | |
|---|---|---|---|
| Component: | Documentation | Version: | 5.2 |
| Severity: | Normal | Keywords: | tutorial |
| Cc: | Charles Severance | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description (last modified by )
This is pretty simple. In tutorial 2:
https://docs.djangoproject.com/en/5.2/intro/tutorial02/
It has the following statement:
Save these changes and start a new Python interactive shell by running python manage.py shell again:
It should be reworded to say:
Save these changes and start a new Python interactive shell by running python manage.py shell again.
If you are currently in the shell with a three-chevron prompt (>>>), you need to exit the current
shell using quit() and then run python manage.py shell again to reload the shell
with the new models.