Changed the log message for trying SSL with Socket driver to point people in the direction of Twisted.

This commit is contained in:
Jeremy Fincher 2005-05-19 23:38:55 +00:00
parent 49e74670a4
commit 6986bbad16
1 changed files with 2 additions and 2 deletions

View File

@ -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()