| 28 | | raise ImproperlyConfigured, "Could not load database backend: %s. Is DATABASE_ENGINE (currently, %r) spelled correctly? Available options are: %s" % (exc, DATABASE_ENGINE, ", ".join(map(repr, available_backends))) |
|---|
| 29 | | #(DATABASE_ENGINE, ', '.join(map(repr, available_backends)))k |
|---|
| | 28 | raise ImproperlyConfigured, "Could not load database backend: %s. Is your DATABASE_ENGINE setting (currently, %r) spelled correctly? Available options are: %s" % \ |
|---|
| | 29 | (exc, DATABASE_ENGINE, ", ".join(map(repr, available_backends))) |
|---|