From 6986bbad166f41d8e55048d8deba397f3861a853 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 19 May 2005 23:38:55 +0000 Subject: [PATCH] Changed the log message for trying SSL with Socket driver to point people in the direction of Twisted. --- src/drivers/Socket.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/drivers/Socket.py b/src/drivers/Socket.py index 852c31757..0b2ce4a6d 100644 --- a/src/drivers/Socket.py +++ b/src/drivers/Socket.py @@ -65,8 +65,8 @@ class SocketDriver(drivers.IrcDriver, drivers.ServersMixin): self.reconnectWaits = reconnectWaits #Only connect to non-SSL servers if self.networkGroup.get('ssl').value: - drivers.log.error('The Socket driver can not connect to SSL \ - servers. Stopping.') + drivers.log.error('The Socket driver can not connect to SSL ' + 'servers. Try the Twisted driver instead.') else: self.connect()