diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2020-01-28 16:58:39 -0800 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-01-29 06:25:40 +0100 |
commit | 958977f662d878c299b3599282f005c3469dbef9 (patch) | |
tree | 3d788fb2e6ebd914fd2c694136372e157a00359c /django/db/backends/postgresql/operations.py | |
parent | 32166a9f7c8afd6d34ff7e7c0a13a46a6eedcc5e (diff) | |
download | django-958977f662d878c299b3599282f005c3469dbef9.tar.gz |
Fixed #31212 -- Updated psycopg links to HTTPS and new location.
Diffstat (limited to 'django/db/backends/postgresql/operations.py')
-rw-r--r-- | django/db/backends/postgresql/operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/operations.py b/django/db/backends/postgresql/operations.py index e8355a0e58..ec87b61f49 100644 --- a/django/db/backends/postgresql/operations.py +++ b/django/db/backends/postgresql/operations.py @@ -230,7 +230,7 @@ class DatabaseOperations(BaseDatabaseOperations): return ['DISTINCT'], [] def last_executed_query(self, cursor, sql, params): - # http://initd.org/psycopg/docs/cursor.html#cursor.query + # https://www.psycopg.org/docs/cursor.html#cursor.query # The query attribute is a Psycopg extension to the DB API 2.0. if cursor.query is not None: return cursor.query.decode() |