• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# Copyright 2020 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6"""Script for ensuring that a python action runs under Python3"""
7
8import subprocess
9import sys
10
11sys.exit(subprocess.call(['python3'] + sys.argv[1:]))
12