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

Unified Diff: experimental/telemetry_mini/telemetry_mini.py

Issue 3015453002: [telemetry_mini] Fix websocket method name (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/telemetry_mini/telemetry_mini.py
diff --git a/experimental/telemetry_mini/telemetry_mini.py b/experimental/telemetry_mini/telemetry_mini.py
index f48cbd688c8c4ca50a89ca1d4fbb7098e25212dc..9733beb0effcd011fa296df8f822d8f14d7a3de8 100644
--- a/experimental/telemetry_mini/telemetry_mini.py
+++ b/experimental/telemetry_mini/telemetry_mini.py
@@ -326,8 +326,7 @@ class DevToolsWebSocket(object):
@RetryOn(socket.error)
def Open(self):
assert self._socket is None
- # pylint: disable=no-member
- self._socket = websocket.CreateConnection(self._url)
+ self._socket = websocket.create_connection(self._url)
def Close(self):
if self._socket is not None:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698