From 86c322ccbe454957781563dd928346abc71c314c Mon Sep 17 00:00:00 2001 From: Romain Bazile Date: Wed, 2 Jun 2021 14:02:22 +0200 Subject: [PATCH] display: fix the shutdown message line break (cherry picked from commit 1d8a599975ef244db0e0533adfc2963ae105e513) --- scripts/planktoscope/display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/planktoscope/display.py b/scripts/planktoscope/display.py index 7cb9bba..067eb62 100644 --- a/scripts/planktoscope/display.py +++ b/scripts/planktoscope/display.py @@ -100,7 +100,7 @@ class Display(object): def stop(self): logger.info("Display is out!") - self.display_text("Cut the power in\n5s") + self.display_text("Cut the power\nin 5s") if __name__ == "__main__":