Skip to content

Commit

Permalink
Fixed #3589: settings templates and default settings now mention psyc…
Browse files Browse the repository at this point in the history
…opg2 instead of psycopg1. Thanks (again), Mark Fargas.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4631 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed Feb 27, 2007
1 parent a8ed2b4 commit 8930f3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django/conf/global_settings.py
Expand Up @@ -99,7 +99,7 @@
SEND_BROKEN_LINK_EMAILS = False SEND_BROKEN_LINK_EMAILS = False


# Database connection info. # Database connection info.
DATABASE_ENGINE = '' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'. DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
DATABASE_NAME = '' # Or path to database file if using sqlite3. DATABASE_NAME = '' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3. DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3.
Expand Down
2 changes: 1 addition & 1 deletion django/conf/project_template/settings.py
Expand Up @@ -9,7 +9,7 @@


MANAGERS = ADMINS MANAGERS = ADMINS


DATABASE_ENGINE = '' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'. DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
DATABASE_NAME = '' # Or path to database file if using sqlite3. DATABASE_NAME = '' # Or path to database file if using sqlite3.
DATABASE_USER = '' # Not used with sqlite3. DATABASE_USER = '' # Not used with sqlite3.
DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3.
Expand Down

0 comments on commit 8930f3d

Please sign in to comment.