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/parsedump.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/parsedump.py')
-rwxr-xr-x | klippy/parsedump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/parsedump.py b/klippy/parsedump.py index 0f6c48b3..380446eb 100755 --- a/klippy/parsedump.py +++ b/klippy/parsedump.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Script to parse a serial port data dump # # Copyright (C) 2016 Kevin O'Connor <kevin@koconnor.net> |