1
0
mirror of https://github.com/django/django.git synced 2025-07-04 09:49:12 +00:00

[multi-db] Fixed typo in doc for django.db.connect.

git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3651 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jason Pellerin 2006-08-23 02:42:15 +00:00
parent d82245be55
commit f67b8c6698

View File

@ -30,7 +30,7 @@ if not settings.DATABASE_ENGINE:
def connect(settings):
"""Connect to the database specified in settings. Returns a
ConnectionInfo on succes, raises ImproperlyConfigured if the
ConnectionInfo on success, raises ImproperlyConfigured if the
settings don't specify a valid database connection.
"""
info = ConnectionInfo(settings)