No need to issue a warning here *and* when we call connectSSL.

This commit is contained in:
James Vega 2005-03-11 21:29:33 +00:00
parent df2336505d
commit 24271c7b4e

View File

@ -44,7 +44,7 @@ from twisted.internet.protocol import ReconnectingClientFactory
try: try:
from OpenSSL import SSL from OpenSSL import SSL
except ImportError: except ImportError:
drivers.log.warning('PyOpenSSL is not available, can not connect to SSL servers.') drivers.log.debug('PyOpenSSL is not available, can not connect to SSL servers.')
SSL = None SSL = None
class TwistedRunnerDriver(drivers.IrcDriver): class TwistedRunnerDriver(drivers.IrcDriver):