From 636670f7a0075533974ca0a668efa9b623a52749 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 2 Aug 2021 13:02:33 +0200 Subject: [PATCH] expecting project strign now --- core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core.py b/core.py index be919cd..bce38c9 100644 --- a/core.py +++ b/core.py @@ -34,10 +34,10 @@ class ParserTypes(enum.Enum): SUBSERVICES = 'subservices' -def init_printout(): +def init_printout(project_string: str): global LOGGER_INSTANCE LOGGER_INSTANCE = get_console_logger() - print('-- FSFW MOD Generator --') + print(f'-- {project_string} MOD Generator --') def return_generic_args_parser() -> argparse.ArgumentParser: