aboutsummaryrefslogtreecommitdiff
path: root/tools_libyuv
diff options
context:
space:
mode:
authorMirko Bonadei <mbonadei@chromium.org>2021-12-17 21:52:29 +0100
committerlibyuv LUCI CQ <libyuv-scoped@luci-project-accounts.iam.gserviceaccount.com>2021-12-20 19:47:32 +0000
commit1be5734e5a14c468c10b8332700b1f90d3e94dc4 (patch)
tree12804f3f7af7c1411949836a32be25911251e37b /tools_libyuv
parent78625492cb0ff43faebbb6cb6db2209cd4ccb785 (diff)
downloadlibyuv-1be5734e5a14c468c10b8332700b1f90d3e94dc4.tar.gz
Fix gclient sync python3 errors.
Bug: None Change-Id: I3b87d0064473336a6ca3a1176c17f219ae0a2eb4 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3347644 Reviewed-by: Frank Barchard <fbarchard@chromium.org> Commit-Queue: Frank Barchard <fbarchard@chromium.org>
Diffstat (limited to 'tools_libyuv')
-rwxr-xr-xtools_libyuv/get_landmines.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools_libyuv/get_landmines.py b/tools_libyuv/get_landmines.py
index c554f04a..bd1e8c59 100755
--- a/tools_libyuv/get_landmines.py
+++ b/tools_libyuv/get_landmines.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright 2016 The LibYuv Project Authors. All rights reserved.
#
# Use of this source code is governed by a BSD-style license
@@ -25,8 +25,8 @@ def print_landmines():
# dependency problems, fix the dependency problems instead of adding a
# landmine.
# See the Chromium version in src/build/get_landmines.py for usage examples.
- print 'Clobber to remove GYP artifacts after switching bots to GN.'
- print 'Another try to remove GYP artifacts after switching bots to GN.'
+ print('Clobber to remove GYP artifacts after switching bots to GN.')
+ print('Another try to remove GYP artifacts after switching bots to GN.')
def main():