From 1fa4a2d256da70996e44733b37f076c4f93b1e46 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Thu, 16 May 2019 11:26:33 +0200 Subject: [PATCH] Improve OTA error message --- esphome/espota2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/espota2.py b/esphome/espota2.py index 65684f9bfc..786f49dbdf 100644 --- a/esphome/espota2.py +++ b/esphome/espota2.py @@ -130,7 +130,7 @@ def check_error(data, expect): "choose the correct 'board' option (esp01_1m always works) and try again.") if dat == RESPONSE_ERROR_ESP8266_NOT_ENOUGH_SPACE: raise OTAError("Error: ESP does not have enough space to store OTA file. Please try " - "flashing a minimal firmware (see FAQ)") + "flashing a minimal firmware (remove everything except ota)") if dat == RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE: raise OTAError("Error: The OTA partition on the ESP is too small. ESPHome needs to resize " "this partition, please flash over USB.")