diff options
author | Adam Johnson <me@adamj.eu> | 2020-05-06 05:35:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 06:35:26 +0200 |
commit | 1c2c6f1b51a540bddc7ae95f4d1213688411ca44 (patch) | |
tree | 4ccba035a421873e341736790830dcc85a86c60f /django/db/backends/base/operations.py | |
parent | aff7a58aef0264e5b2740e5df07894ecc0d7a580 (diff) | |
download | django-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.py | 2 |
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.""" |