summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick <nickrsan@users.noreply.github.com>2017-11-04 03:09:46 +1300
committerTim Graham <timograham@gmail.com>2017-11-03 10:09:46 -0400
commit3d22121a0b5b4087487ada62b7f2a20fb30a3856 (patch)
treea2aed341e403ce4614644811b217d567dc45741d
parentba2c4ec7ccf4e7fb3bbb9a5df643f50b2f38ee2a (diff)
Clarified error message for when sqlplarse isn't installed.
-rw-r--r--django/db/backends/base/operations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/base/operations.py b/django/db/backends/base/operations.py
index 3d476b77da..c9dfee444b 100644
--- a/django/db/backends/base/operations.py
+++ b/django/db/backends/base/operations.py
@@ -300,7 +300,7 @@ class BaseDatabaseOperations:
import sqlparse
except ImportError:
raise ImproperlyConfigured(
- "sqlparse is required if you don't split your SQL "
+ "The sqlparse package is required if you don't split your SQL "
"statements manually."
)
else: