diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-25 23:48:47 -0700 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2018-09-26 08:48:47 +0200 |
| commit | 82f286cf6f198d37850d3c5df637b5665566a66b (patch) | |
| tree | bf8d7b8d45ee9bcf033ecbd35d73f98f3f58d87e /django/db/backends/sqlite3 | |
| parent | d1d5c97bc2821bf8c0f4b2d9c7ab16200845b494 (diff) | |
Refs #29784 -- Switched to https:// links where available.
Diffstat (limited to 'django/db/backends/sqlite3')
| -rw-r--r-- | django/db/backends/sqlite3/base.py | 2 | ||||
| -rw-r--r-- | django/db/backends/sqlite3/creation.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/sqlite3/base.py b/django/db/backends/sqlite3/base.py index c1667b5c9b..d6bb061c30 100644 --- a/django/db/backends/sqlite3/base.py +++ b/django/db/backends/sqlite3/base.py @@ -100,7 +100,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): } # SQLite requires LIKE statements to include an ESCAPE clause if the value # being escaped has a percent or underscore in it. - # See http://www.sqlite.org/lang_expr.html for an explanation. + # See https://www.sqlite.org/lang_expr.html for an explanation. operators = { 'exact': '= %s', 'iexact': "LIKE %s ESCAPE '\\'", diff --git a/django/db/backends/sqlite3/creation.py b/django/db/backends/sqlite3/creation.py index a714eebb3a..d22d8358a7 100644 --- a/django/db/backends/sqlite3/creation.py +++ b/django/db/backends/sqlite3/creation.py @@ -89,7 +89,7 @@ class DatabaseCreation(BaseDatabaseCreation): This takes into account the special cases of ":memory:" and "" for SQLite since the databases will be distinct despite having the same - TEST NAME. See http://www.sqlite.org/inmemorydb.html + TEST NAME. See https://www.sqlite.org/inmemorydb.html """ test_database_name = self._get_test_db_name() sig = [self.connection.settings_dict['NAME']] |
