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:33:20 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-02-23 12:33:20 +0000
commitc646b994539c6d8a35298e06f6a4e8f3ad0c68c8 (patch)
tree15f9b01bd267c2902187b8111cc8aa4c48c1f441 /django/db/backends/postgresql/base.py
parentea695f86688fa4beda26a08851e8c9fd5595c3d7 (diff)
No, really this time -- corrected the warning message from r12510.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12512 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 1b478c374f..500ba5ce03 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 "postgresql" backend has been deprecated. Use "postgres_psycopg2" instead.',
+ 'The "postgresql" backend has been deprecated. Use "postgresql_psycopg2" instead.',
PendingDeprecationWarning
)