summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql/base.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-02-23 12:26:50 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-02-23 12:26:50 +0000
commitea695f86688fa4beda26a08851e8c9fd5595c3d7 (patch)
tree65cd8c30a456b67c3d28b7d4e264e3ac1900bed9 /django/db/backends/postgresql/base.py
parent156cdcf92decdf18a87a1229ba4ef8da1e6972ab (diff)
Cleaned up the warning message introduced by r12510.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12511 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql/base.py')
-rw-r--r--django/db/backends/postgresql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py
index 5352e9bff6..1b478c374f 100644
--- a/django/db/backends/postgresql/base.py
+++ b/django/db/backends/postgresql/base.py
@@ -104,7 +104,7 @@ class DatabaseWrapper(BaseDatabaseWrapper):
import warnings
warnings.warn(
- 'The ``postgres`` backend has been deprecated. Use ``postgres_psycopg2`` instead.',
+ 'The "postgresql" backend has been deprecated. Use "postgres_psycopg2" instead.',
PendingDeprecationWarning
)