summaryrefslogtreecommitdiff
path: root/django/db/backends/base/operations.py
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2020-05-06 05:35:26 +0100
committerGitHub <noreply@github.com>2020-05-06 06:35:26 +0200
commit1c2c6f1b51a540bddc7ae95f4d1213688411ca44 (patch)
tree4ccba035a421873e341736790830dcc85a86c60f /django/db/backends/base/operations.py
parentaff7a58aef0264e5b2740e5df07894ecc0d7a580 (diff)
downloaddjango-1c2c6f1b51a540bddc7ae95f4d1213688411ca44.tar.gz
Fixed a/an typos in "SQL" usage.
Diffstat (limited to 'django/db/backends/base/operations.py')
-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 305306e8ce..1dbcee4637 100644
--- a/django/db/backends/base/operations.py
+++ b/django/db/backends/base/operations.py
@@ -398,7 +398,7 @@ class BaseDatabaseOperations:
to tables with foreign keys pointing the tables being truncated.
PostgreSQL requires a cascade even if these tables are empty.
"""
- raise NotImplementedError('subclasses of BaseDatabaseOperations must provide a sql_flush() method')
+ raise NotImplementedError('subclasses of BaseDatabaseOperations must provide an sql_flush() method')
def execute_sql_flush(self, sql_list):
"""Execute a list of SQL statements to flush the database."""