From 10643da56c9f3a1d14bce0c7e0c190a48b4dc73a Mon Sep 17 00:00:00 2001 From: N95JPL <37276225+N95JPL@users.noreply.github.com> Date: Mon, 19 Nov 2018 13:09:20 +0000 Subject: [PATCH] Update DisplayFilenameAndLayerOnLCD.py --- .../scripts/DisplayFilenameAndLayerOnLCD.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py index a22ca07641..bc64463d9b 100644 --- a/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py +++ b/plugins/PostProcessingPlugin/scripts/DisplayFilenameAndLayerOnLCD.py @@ -71,7 +71,7 @@ class DisplayFilenameAndLayerOnLCD(Script): max_layer = max_layer.split(":")[1] if line.startswith(";LAYER:"): if self.getSettingValueByKey("maxlayer"): - display_text = display_text + " of " + max_layer + "!" + display_text = display_text + " of " + max_layer else: display_text = display_text + "!" line_index = lines.index(line)