diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-22 18:54:55 -0700 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2018-09-22 19:02:33 -0700 |
commit | b07e34e0b892283b7b2bcb88e473806dff67dce0 (patch) | |
tree | 350947e2c42757a630ac7652bbdcee10a4e218bd /lib/extras.py | |
parent | 6b6b1a6e8d5d831fe17b168b4bf33d2c22bb2cc0 (diff) | |
download | psycopg2-b07e34e0b892283b7b2bcb88e473806dff67dce0.tar.gz |
Prefer https:// URLs when available
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extras.py b/lib/extras.py index 024d7f3..af59d2f 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -404,7 +404,7 @@ class NamedTupleCursor(_cursor): class LoggingConnection(_connection): """A connection that logs all queries to a file or logger__ object. - .. __: http://docs.python.org/library/logging.html + .. __: https://docs.python.org/library/logging.html """ def initialize(self, logobj): @@ -638,8 +638,8 @@ class ReplicationCursor(_replicationCursor): class UUID_adapter(object): """Adapt Python's uuid.UUID__ type to PostgreSQL's uuid__. - .. __: http://docs.python.org/library/uuid.html - .. __: http://www.postgresql.org/docs/current/static/datatype-uuid.html + .. __: https://docs.python.org/library/uuid.html + .. __: https://www.postgresql.org/docs/current/static/datatype-uuid.html """ def __init__(self, uuid): |