Ticket #10266: 10266.diff

File 10266.diff, 541 bytes (added by Matt Boersma, 15 years ago)

Clarify that the user must start a new Python shell to see changes to models

  • docs/intro/tutorial01.txt

     
    618618Note the addition of ``import datetime`` to reference Python's standard
    619619``datetime`` module.
    620620
    621 Let's jump back into the Python interactive shell by running
     621Save these changes and start a new Python interactive shell by running
    622622``python manage.py shell`` again::
    623623
    624624    >>> from mysite.polls.models import Poll, Choice
Back to Top