diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-04-20 23:01:15 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-04-20 23:01:15 +0200 |
commit | df48b355d22957829d5efbc9de7b524155643e8d (patch) | |
tree | 5ecafdd164b55945e454582febe999459e5bdd21 /src/clint.py | |
parent | a48a0a4f7b2b1255025ceb128f6cc97fa0f992aa (diff) | |
download | rneovim-df48b355d22957829d5efbc9de7b524155643e8d.tar.gz rneovim-df48b355d22957829d5efbc9de7b524155643e8d.tar.bz2 rneovim-df48b355d22957829d5efbc9de7b524155643e8d.zip |
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.
Diffstat (limited to 'src/clint.py')
-rwxr-xr-x | src/clint.py | 2 |
1 files changed, 1 insertions, 1 deletions
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. |