From d0e9dd0352d9f9eb7fc459f2af29f5acbcf439e2 Mon Sep 17 00:00:00 2001 From: Bruno <33235089+brunobold@users.noreply.github.com> Date: Fri, 31 May 2024 11:45:59 +0100 Subject: [PATCH] KlipperScreen Install Fix (#1385) Fixed Syntax Error from line 154 when running install script. --- scripts/KlipperScreen-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/KlipperScreen-install.sh b/scripts/KlipperScreen-install.sh index 53bf1535..d18e73a7 100755 --- a/scripts/KlipperScreen-install.sh +++ b/scripts/KlipperScreen-install.sh @@ -117,7 +117,8 @@ create_virtualenv() if [ -d $KSENV ]; then echo_text "Removing old virtual environment" rm -rf ${KSENV} - + fi + echo_text "Creating virtual environment" python3 -m venv ${KSENV}