diff options
Diffstat (limited to 'django/db/backends/dummy/base.py')
| -rw-r--r-- | django/db/backends/dummy/base.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/django/db/backends/dummy/base.py b/django/db/backends/dummy/base.py index 746f26bacc..12a940d3a2 100644 --- a/django/db/backends/dummy/base.py +++ b/django/db/backends/dummy/base.py @@ -12,7 +12,9 @@ from django.db.backends import * from django.db.backends.creation import BaseDatabaseCreation def complain(*args, **kwargs): - raise ImproperlyConfigured("You haven't set the database ENGINE setting yet.") + raise ImproperlyConfigured("settings.DATABASES is improperly configured. " + "Please supply the ENGINE value. Check " + "settings documentation for more details.") def ignore(*args, **kwargs): pass |
