Makefileadaption for proper status output + interpreter reduction

This commit is contained in:
Dirk Alders 2023-06-08 08:22:32 +02:00
parent c47c20e0d6
commit aef99580e1
2 changed files with 2 additions and 2 deletions

View File

@ -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"""

View File

@ -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)