Browse Source

Makefileadaption for proper status output + interpreter reduction

master
Dirk Alders 1 year ago
parent
commit
aef99580e1
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      __init__.py
  2. 1
    1
      _examples_/Makefile

+ 1
- 1
__init__.py View File

37
 logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
37
 logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
38
 
38
 
39
 
39
 
40
-__INTERPRETER__ = (2, 3)
40
+__INTERPRETER__ = (3, )
41
 """The supported Interpreter-Versions"""
41
 """The supported Interpreter-Versions"""
42
 __DESCRIPTION__ = """This Module helps implementing state machines."""
42
 __DESCRIPTION__ = """This Module helps implementing state machines."""
43
 """The Module description"""
43
 """The Module description"""

+ 1
- 1
_examples_/Makefile View File

8
 	python3 $< > $@
8
 	python3 $< > $@
9
 
9
 
10
 clean:
10
 clean:
11
-	@echo "\e[1m  * Example logs...\e[0m"
11
+	@echo -e "\e[1m  * Example logs...\e[0m"
12
 	@rm -f $(LOGFILES)
12
 	@rm -f $(LOGFILES)

Loading…
Cancel
Save