From 40874baa2a69b5ddf65108de3d3edbcadc941ce3 Mon Sep 17 00:00:00 2001 From: Lukas Schauer Date: Fri, 6 Feb 2015 04:44:47 +0100 Subject: [PATCH] Use python2 instead of python(2/3) On modern systems "python" refers to python3, and the script won't work, so I suggest changing it to python2 with this patch. This patch shouldn't break compatibility with older systems. --- tools/esptool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/esptool.py b/tools/esptool.py index 130e80f0..c6027eb7 100755 --- a/tools/esptool.py +++ b/tools/esptool.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # # ESP8266 ROM Bootloader Utility # https://github.com/themadinventor/esptool