Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1213)

Unified Diff: third_party/tlslite/tlslite/integration/tlssocketservermixin.py

Issue 211173006: Perform tlslite 0.3.8 -> 0.4.6 renames ahead of time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Drop the -B Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/tlslite/tlslite/integration/tlssocketservermixin.py
diff --git a/third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py b/third_party/tlslite/tlslite/integration/tlssocketservermixin.py
similarity index 96%
rename from third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
rename to third_party/tlslite/tlslite/integration/tlssocketservermixin.py
index dd4f945dd07054e98f6394056f8efef472593ea8..afb4135f88926a215dfbe89162cc0f01c6b534ac 100644
--- a/third_party/tlslite/tlslite/integration/TLSSocketServerMixIn.py
+++ b/third_party/tlslite/tlslite/integration/tlssocketservermixin.py
@@ -1,6 +1,6 @@
"""TLS Lite + SocketServer."""
-from tlslite.TLSConnection import TLSConnection
+from tlslite.tlsconnection import TLSConnection
class TLSSocketServerMixIn:
"""
@@ -56,4 +56,4 @@ class TLSSocketServerMixIn:
#Implement this method to do some form of handshaking. Return True
#if the handshake finishes properly and the request is authorized.
def handshake(self, tlsConnection):
- raise NotImplementedError()
+ raise NotImplementedError()

Powered by Google App Engine
This is Rietveld 408576698