diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-11-14 07:38:27 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-11-14 07:38:27 +0000 |
| commit | a0d4749920fa87182dcf70ae979367295546f731 (patch) | |
| tree | 9623d40dba34e945f20b5776df3a9baa1f8d7235 /docs/faq | |
| parent | 23657aaf16d38d98b1f5ba8b99762f16c49e113d (diff) | |
Fixed #9468 -- Fixed a misleading FAQ answer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9428 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/faq')
| -rw-r--r-- | docs/faq/models.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/faq/models.txt b/docs/faq/models.txt index 4a33914ec9..822fdc9d77 100644 --- a/docs/faq/models.txt +++ b/docs/faq/models.txt @@ -79,7 +79,7 @@ Why is Django leaking memory? Django isn't known to leak memory. If you find your Django processes are allocating more and more memory, with no sign of releasing it, check to make -sure your ``DEBUG`` setting is set to ``True``. If ``DEBUG`` is ``True``, then +sure your ``DEBUG`` setting is set to ``False``. If ``DEBUG`` is ``True``, then Django saves a copy of every SQL statement it has executed. (The queries are saved in ``django.db.connection.queries``. See |
