diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-06-27 20:23:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-06-27 20:26:02 -0400 |
commit | d2fafbdd9e9cf1a5e1a05a254f22c5512b82cb69 (patch) | |
tree | 336e919f55b17bb1735f0c5331e9697c25ecf77e /klippy/console.py | |
parent | d981973096a91f6234c4a916d80eda3efc258725 (diff) | |
download | kutter-d2fafbdd9e9cf1a5e1a05a254f22c5512b82cb69.tar.gz kutter-d2fafbdd9e9cf1a5e1a05a254f22c5512b82cb69.tar.xz kutter-d2fafbdd9e9cf1a5e1a05a254f22c5512b82cb69.zip |
build: Request python2 for all directly executed python binaries
Some systems point python to python3 instead of python2 - explicitly
request python2 to avoid conflicts.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/console.py')
-rwxr-xr-x | klippy/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/console.py b/klippy/console.py index a7547458..c95cbf3d 100755 --- a/klippy/console.py +++ b/klippy/console.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Script to implement a test console with firmware over serial port # # Copyright (C) 2016,2017 Kevin O'Connor <kevin@koconnor.net> |