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

Unified Diff: tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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: tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
diff --git a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
index 9255303fc027f09f22b0b5ab57a2d260e5129150..4852371dc17282f0222effc65e8adb572f20ad53 100644
--- a/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
+++ b/tools/telemetry/telemetry/core/platform/linux_based_platform_backend.py
@@ -138,7 +138,7 @@ class LinuxBasedPlatformBackend(platform_backend.PlatformBackend):
raise
def _ConvertKbToByte(self, value):
- return int(value.replace('kB','')) * 1024
+ return int(value.replace('kB', '')) * 1024
def _GetProcFileDict(self, contents):
retval = {}

Powered by Google App Engine
This is Rietveld 408576698