diff options
author | Simon Charette <charette.s@gmail.com> | 2018-12-21 18:29:48 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-12-22 14:20:43 -0500 |
commit | 20f6f9eaa1ae6dfbfd346d167e17c3b50e74cc11 (patch) | |
tree | a94d320c16e0b0d1a1c1896a51cb244fedcf7414 /django/db/backends/sqlite3/schema.py | |
parent | e671337e8b35427b379303cbf6808855f04083e8 (diff) | |
download | django-20f6f9eaa1ae6dfbfd346d167e17c3b50e74cc11.tar.gz |
Renamed SQLite3 references to to SQLite.
The version suffix isn't part of the product name.
Diffstat (limited to 'django/db/backends/sqlite3/schema.py')
-rw-r--r-- | django/db/backends/sqlite3/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/schema.py b/django/db/backends/sqlite3/schema.py index 3992d86651..edc128fca2 100644 --- a/django/db/backends/sqlite3/schema.py +++ b/django/db/backends/sqlite3/schema.py @@ -24,7 +24,7 @@ class DatabaseSchemaEditor(BaseDatabaseSchemaEditor): 'SQLite schema editor cannot be used while foreign key ' 'constraint checks are enabled. Make sure to disable them ' 'before entering a transaction.atomic() context because ' - 'SQLite3 does not support disabling them in the middle of ' + 'SQLite does not support disabling them in the middle of ' 'a multi-statement transaction.' ) return super().__enter__() |