diff --git a/README.md b/README.md index 068615b32..154b618c9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ and Pypy 3. ## Documentation -If this is your first install, there is an [install guide](http://doc.supybot.aperio.fr/en/latest/use/install.html). +If this is your first install, there is an [install guide](https://docs.limnoria.net/en/latest/use/install.html). You will probably be pointed to it if you ask on IRC how to install Limnoria. TL;DR version: @@ -32,11 +32,11 @@ pip3 install --user limnoria supybot-wizard ``` -There is extensive documentation at [doc.supybot.aperio.fr] and at +There is extensive documentation at [docs.limnoria.net] and at [Gribble wiki]. We took the time to write it; you should take the time to read it. -[doc.supybot.aperio.fr]:http://doc.supybot.aperio.fr/ +[docs.limnoria.net]:https://docs.limnoria.net/ [Gribble wiki]:https://sourceforge.net/p/gribble/wiki/Main_Page/ ## IRC channels diff --git a/src/drivers/Socket.py b/src/drivers/Socket.py index 1a0bfaa68..cc265f9e5 100644 --- a/src/drivers/Socket.py +++ b/src/drivers/Socket.py @@ -298,7 +298,7 @@ class SocketDriver(drivers.IrcDriver, drivers.ServersMixin): 'does not use SSL/TLS, which makes it vulnerable to ' 'man-in-the-middle attacks and passive eavesdropping. ' 'You should consider upgrading your connection to SSL/TLS ' - '') + '') % self.irc.network) def setTimeout(): diff --git a/src/utils/net.py b/src/utils/net.py index dbcc65d22..57459d741 100644 --- a/src/utils/net.py +++ b/src/utils/net.py @@ -198,6 +198,6 @@ else: logger.critical('This Python version does not support SSL/TLS ' 'certification authority verification, which makes your ' 'connection vulnerable to man-in-the-middle attacks. See: ' - '') + '') return conn # vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: