diff options
| author | Jason Pellerin <jpellerin@gmail.com> | 2006-08-23 02:42:15 +0000 |
|---|---|---|
| committer | Jason Pellerin <jpellerin@gmail.com> | 2006-08-23 02:42:15 +0000 |
| commit | f67b8c6698e9347ed2bc358447da9e9d227d7336 (patch) | |
| tree | 5a0b719030218fe0e81201323d002797c672ca3f | |
| parent | d82245be55544450b025a1926611902d82bc8ffb (diff) | |
[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
| -rw-r--r-- | django/db/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/__init__.py b/django/db/__init__.py index 65ba8a1617..ae6eca5e7d 100644 --- a/django/db/__init__.py +++ b/django/db/__init__.py @@ -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) |
