summaryrefslogtreecommitdiff
path: root/django/core/management/sql.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-04-02 08:37:53 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-04-02 08:37:53 +0000
commitaf00f29ecb7647e455d3207a4af1c587d7d53e2f (patch)
treed2e86de3757d5113b406f4c23b561d390243de2c /django/core/management/sql.py
parent576606a6f230bc50a82433eb60661737742c2a59 (diff)
Advanced deprecations in core.mail, core.commands, core.context_processors and core.handlers.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/management/sql.py')
-rw-r--r--django/core/management/sql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/sql.py b/django/core/management/sql.py
index 429f470637..dc3fc5794e 100644
--- a/django/core/management/sql.py
+++ b/django/core/management/sql.py
@@ -102,7 +102,7 @@ def sql_reset(app, style, connection):
import warnings
warnings.warn(
'This command has been deprecated. The command ``sqlflush`` can be used to delete everything. You can also use ALTER TABLE or DROP TABLE statements manually.',
- PendingDeprecationWarning
+ DeprecationWarning
)
return sql_delete(app, style, connection) + sql_all(app, style, connection)