From aef99580e1cdc05e6ca80efe05461ab861d6ef39 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Thu, 8 Jun 2023 08:22:32 +0200 Subject: [PATCH] Makefileadaption for proper status output + interpreter reduction --- __init__.py | 2 +- _examples_/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__init__.py b/__init__.py index 072dc67..41399bc 100644 --- a/__init__.py +++ b/__init__.py @@ -37,7 +37,7 @@ except ImportError: logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__) -__INTERPRETER__ = (2, 3) +__INTERPRETER__ = (3, ) """The supported Interpreter-Versions""" __DESCRIPTION__ = """This Module helps implementing state machines.""" """The Module description""" diff --git a/_examples_/Makefile b/_examples_/Makefile index 05176ce..cf7edbe 100644 --- a/_examples_/Makefile +++ b/_examples_/Makefile @@ -8,5 +8,5 @@ all: $(LOGFILES) python3 $< > $@ clean: - @echo "\e[1m * Example logs...\e[0m" + @echo -e "\e[1m * Example logs...\e[0m" @rm -f $(LOGFILES)