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

Unified Diff: tools/telemetry/telemetry/util/cloud_storage.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/util/cloud_storage.py
diff --git a/tools/telemetry/telemetry/util/cloud_storage.py b/tools/telemetry/telemetry/util/cloud_storage.py
index 691f24849685ba46b72b98424be133032fe9d486..fb9b0d0ea6ad4d0f161ee1bdacb7d3351105713f 100644
--- a/tools/telemetry/telemetry/util/cloud_storage.py
+++ b/tools/telemetry/telemetry/util/cloud_storage.py
@@ -14,7 +14,7 @@ import sys
import tarfile
import urllib2
-from telemetry.core import platform
+from telemetry.core import util
from telemetry.util import path
@@ -43,7 +43,7 @@ class CloudStorageError(Exception):
if SupportsProdaccess(gsutil_path) and _FindExecutableInPath('prodaccess'):
return 'Run prodaccess to authenticate.'
else:
- if platform.GetHostPlatform().GetOSName() == 'chromeos':
+ if util.IsRunningOnCrosDevice():
gsutil_path = ('HOME=%s %s' % (_CROS_GSUTIL_HOME_WAR, gsutil_path))
return ('To configure your credentials:\n'
' 1. Run "%s config" and follow its instructions.\n'
@@ -127,7 +127,7 @@ def _RunCommand(args):
# TODO(tbarzic): Figure out a better way to handle gsutil on cros.
# http://crbug.com/386416, http://crbug.com/359293.
gsutil_env = None
- if platform.GetHostPlatform().GetOSName() == 'chromeos':
+ if util.IsRunningOnCrosDevice():
gsutil_env = os.environ.copy()
gsutil_env['HOME'] = _CROS_GSUTIL_HOME_WAR
« no previous file with comments | « tools/telemetry/telemetry/util/classes_unittest.py ('k') | tools/telemetry/telemetry/util/exception_formatter.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698