From 6047c72014ffdf1523cfc3d2b829af96ad08cdf7 Mon Sep 17 00:00:00 2001 From: Samuel Sadok Date: Tue, 2 Jun 2020 19:21:32 +0200 Subject: [PATCH] remove stray line --- Firmware/Tupfile.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/Firmware/Tupfile.lua b/Firmware/Tupfile.lua index 1974adab..c6d2aca3 100644 --- a/Firmware/Tupfile.lua +++ b/Firmware/Tupfile.lua @@ -8,7 +8,6 @@ tup.include('build.lua') function find_python3() success, python_version = run_now("python3 --version") if success then return "python3" end - io.stderr:write("This should go to stderr\n") success, python_version = run_now("python --version") if success then return "python" end error("Python 3 not found.")