| Index: third_party/tlslite/tlslite/integration/pop3_tls.py
|
| diff --git a/third_party/tlslite/tlslite/integration/POP3_TLS.py b/third_party/tlslite/tlslite/integration/pop3_tls.py
|
| similarity index 97%
|
| rename from third_party/tlslite/tlslite/integration/POP3_TLS.py
|
| rename to third_party/tlslite/tlslite/integration/pop3_tls.py
|
| index 71530cc532048edca7d570f8f05d3faea8d31db0..4faeee810e33c0aaf2616aa84a2eceb9f7037623 100644
|
| --- a/third_party/tlslite/tlslite/integration/POP3_TLS.py
|
| +++ b/third_party/tlslite/tlslite/integration/pop3_tls.py
|
| @@ -2,8 +2,8 @@
|
|
|
| import socket
|
| from poplib import POP3
|
| -from tlslite.TLSConnection import TLSConnection
|
| -from tlslite.integration.ClientHelper import ClientHelper
|
| +from tlslite.tlsconnection import TLSConnection
|
| +from tlslite.integration.clienthelper import ClientHelper
|
|
|
| # POP TLS PORT
|
| POP3_TLS_PORT = 995
|
| @@ -139,4 +139,4 @@ class POP3_TLS(POP3, ClientHelper):
|
|
|
| self.file = self.sock.makefile('rb')
|
| self._debugging = 0
|
| - self.welcome = self._getresp()
|
| + self.welcome = self._getresp()
|
|
|