From c646b994539c6d8a35298e06f6a4e8f3ad0c68c8 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 23 Feb 2010 12:33:20 +0000 Subject: [PATCH] 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 --- django/db/backends/postgresql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py index 1b478c374f0..500ba5ce03f 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 )