summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-18 10:35:41 -0400
committerRamiro Morales <cramm0@gmail.com>2013-09-25 21:11:17 -0300
commitd1047c8b4cecd2e64a1ec0882328af9d081220a3 (patch)
treeef07532e0f758c54bddb2f9030c1349280c179db /docs/topics
parentd7ae0bc372f8423e7bcf9b5408df46fd5c8dc27d (diff)
[1.6.x] Fixed #21116 -- Made usage of manage.py in docs more consistent.
Thanks daniel.quattro at gmail.com for the report. d1c9802811 from master.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/auth/default.txt2
-rw-r--r--docs/topics/cache.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt
index e7dd5a964f..f9fdcd5642 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -70,7 +70,7 @@ first time you run it with ``'django.contrib.auth'`` in your
:setting:`INSTALLED_APPS`. If you need to create a superuser at a later date,
you can use a command line utility::
- manage.py createsuperuser --username=joe --email=joe@example.com
+ $ python manage.py createsuperuser --username=joe --email=joe@example.com
You will be prompted for a password. After you enter one, the user will be
created immediately. If you leave off the :djadminopt:`--username` or the
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt
index 6df50aa64b..079bce9c68 100644
--- a/docs/topics/cache.txt
+++ b/docs/topics/cache.txt
@@ -162,7 +162,7 @@ Database caching
To use a database table as your cache backend, first create a cache table in
your database by running this command::
- python manage.py createcachetable [cache_table_name]
+ $ python manage.py createcachetable [cache_table_name]
...where ``[cache_table_name]`` is the name of the database table to create.
(This name can be whatever you want, as long as it's a valid table name that's