diff options
| author | Julien Phalip <jphalip@gmail.com> | 2011-08-23 05:24:31 +0000 |
|---|---|---|
| committer | Julien Phalip <jphalip@gmail.com> | 2011-08-23 05:24:31 +0000 |
| commit | 6feb611c7b0ff5dc55880c347b2957ad3107e1f7 (patch) | |
| tree | d0fa5c1a535e85c93e9f0186f86ee50cdd79c0f7 /docs/intro/tutorial01.txt | |
| parent | a39066ba0bc7a100bb0473111913472326119497 (diff) | |
Fixed #16669 -- Made the startproject instruction formatting easier to read and more consistent with other formatting in the tutorial part 1. Thanks to Daniel Lawrence and Aymeric Augustin.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16664 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial01.txt')
| -rw-r--r-- | docs/intro/tutorial01.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index bf9044e474..23c05ba3a4 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -36,8 +36,13 @@ including database configuration, Django-specific options and application-specific settings. From the command line, ``cd`` into a directory where you'd like to store your -code, then run the command ``django-admin.py startproject mysite``. This will -create a ``mysite`` directory in your current directory. +code, then run the following command: + +.. code-block:: bash + + django-admin.py startproject mysite + +This will create a ``mysite`` directory in your current directory. .. admonition:: Script name may differ in distribution packages |
