aboutsummaryrefslogtreecommitdiff
path: root/afdo_tools/generate_afdo_from_tryjob.py
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2020-02-15 03:23:48 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-02-15 03:23:48 +0000
commit3b46527da85b8139d5fcf887387bcd4de20dec41 (patch)
tree35fa0fbaeaaddd9cc2a126a05eee3527b51e83a8 /afdo_tools/generate_afdo_from_tryjob.py
parent62564f20dc6f3a88caed664d54fc00dbf3bf7373 (diff)
parentb75f321fc8978b92ce3db6886ccb966768f0c7a8 (diff)
downloadtoolchain-utils-android11-d1-s1-release.tar.gz
Change-Id: I508eae962f523cfa857b4da7c77fdb8a70dfab1e
Diffstat (limited to 'afdo_tools/generate_afdo_from_tryjob.py')
-rwxr-xr-xafdo_tools/generate_afdo_from_tryjob.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/afdo_tools/generate_afdo_from_tryjob.py b/afdo_tools/generate_afdo_from_tryjob.py
index b8a2d669..3ed578ea 100755
--- a/afdo_tools/generate_afdo_from_tryjob.py
+++ b/afdo_tools/generate_afdo_from_tryjob.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
@@ -115,7 +115,7 @@ def main():
'--tryjob',
required=True,
type=_tryjob_arg,
- help='Path to our tryjob\'s artifacts. Accepts a gs:// path, pantheon '
+ help="Path to our tryjob's artifacts. Accepts a gs:// path, pantheon "
'link, or tryjob ID, e.g. R75-11965.0.0-b3648595. In the last case, '
'the assumption is that you ran a chell-chrome-pfq-tryjob.')
parser.add_argument(
@@ -127,7 +127,7 @@ def main():
'-k',
'--keep_artifacts_on_failure',
action='store_true',
- help='Don\'t remove the tempdir on failure')
+ help="Don't remove the tempdir on failure")
args = parser.parse_args()
if not distutils.spawn.find_executable(_CREATE_LLVM_PROF):