From df48b355d22957829d5efbc9de7b524155643e8d Mon Sep 17 00:00:00 2001 From: Dundar Goc Date: Wed, 20 Apr 2022 23:01:15 +0200 Subject: build(clint): change shebang to python3 There are distributions that doesn't symlink python to python3. This will make clint work for these without any additional steps from the user. --- src/clint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/clint.py b/src/clint.py index 75aaba176d..240833703f 100755 --- a/src/clint.py +++ b/src/clint.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # vim: set fileencoding=utf-8 # # Copyright (c) 2009 Google Inc. All rights reserved. -- cgit