#3158 closed defect (worksforme)
Outdated documentation/tutorial1 "Let's look at what startproject created:..."
| Reported by: | anonymous | Owned by: | Jacob | 
|---|---|---|---|
| Component: | Documentation | Version: | dev | 
| Severity: | critical | Keywords: | tutorial1 startproject settings directory subdir | 
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no | 
| Needs tests: | no | Patch needs improvement: | no | 
| Easy pickings: | no | UI/UX: | no | 
Description
Doc says:
Let's look at what startproject created:
mysite/
    __init__.py
    manage.py
    settings.py
    urls.py
Doc should say:
Let's look at what startproject created:
mysite
|   manage.py
|   settings.py
|   urls.py
|   __init__.py
|
+---apps
|       __init__.py
|
\---settings
    |   admin.py
    |   main.py
    |   __init__.py
    |
    \---urls
            admin.py
            main.py
            __init__.py
.. and explanation ..
      
  Note:
 See   TracTickets
 for help on using tickets.
    
The documentation is correct. I'm not sure what version of Django you're using, but I just ran a
startprojectwith the development version, and it created the files precisely as described by the docs.