diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 0d95f6f..d1c4626 100644
a
|
b
|
above, then copy ``django/contrib/admin/templates/admin/base_site.html`` to
|
442 | 442 | ``/home/my_username/mytemplates/admin/base_site.html``. Don't forget that |
443 | 443 | ``admin`` subdirectory. |
444 | 444 | |
| 445 | .. admonition:: Where are Django sources? |
| 446 | |
| 447 | If you have difficulties to find where Django source files are located on |
| 448 | your system, just run the following command: |
| 449 | |
| 450 | .. code-block:: bash |
| 451 | |
| 452 | python -c "import sys; sys.path = sys.path[1:]; import django; print(django.__path__)" |
| 453 | |
445 | 454 | Then, just edit the file and replace the generic Django text with your own |
446 | 455 | site's name as you see fit. |
447 | 456 | |