Skip to content

Commit 5c19a76

Browse files
committed
use https for domains that support it
1 parent c84d913 commit 5c19a76

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ A REPL for Postgres
2828

2929
This is a postgres client that does auto-completion and syntax highlighting.
3030

31-
Home Page: http://pgcli.com
31+
Home Page: https://pgcli.com
3232

33-
MySQL Equivalent: http://mycli.net
33+
MySQL Equivalent: https://mycli.net
3434

3535
.. image:: screenshots/pgcli.gif
3636
.. image:: screenshots/image01.png
@@ -159,8 +159,8 @@ https://github.com/dbcli/pgcli/blob/main/CONTRIBUTING.rst
159159

160160
Please feel free to reach out to us if you need help.
161161

162-
* Amjith, pgcli author: amjith.r@gmail.com, Twitter: `@amjithr <http://twitter.com/amjithr>`_
163-
* Irina, pgcli maintainer: i.chernyavska@gmail.com, Twitter: `@irinatruong <http://twitter.com/irinatruong>`_
162+
* Amjith, pgcli author: amjith.r@gmail.com, Twitter: `@amjithr <https://twitter.com/amjithr>`_
163+
* Irina, pgcli maintainer: i.chernyavska@gmail.com, Twitter: `@irinatruong <https://twitter.com/irinatruong>`_
164164

165165
Detailed Installation Instructions:
166166
-----------------------------------
@@ -346,12 +346,12 @@ Thanks:
346346
-------
347347

348348
A special thanks to `Jonathan Slenders <https://twitter.com/jonathan_s>`_ for
349-
creating `Python Prompt Toolkit <http://github.com/jonathanslenders/python-prompt-toolkit>`_,
349+
creating `Python Prompt Toolkit <https://github.com/jonathanslenders/python-prompt-toolkit>`_,
350350
which is quite literally the backbone library, that made this app possible.
351351
Jonathan has also provided valuable feedback and support during the development
352352
of this app.
353353

354-
`Click <http://click.pocoo.org/>`_ is used for command line option parsing
354+
`Click <https://click.pocoo.org/>`_ is used for command line option parsing
355355
and printing error messages.
356356

357357
Thanks to `psycopg <https://www.psycopg.org/>`_ for providing a rock solid

pgcli/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ def run_cli(self):
959959
if not self.less_chatty:
960960
print("Server: PostgreSQL", self.pgexecute.server_version)
961961
print("Version:", __version__)
962-
print("Home: http://pgcli.com")
962+
print("Home: https://pgcli.com")
963963

964964
try:
965965
while True:

0 commit comments

Comments
 (0)