From ccca904cb87054f4a42a36f839fd2304a0757589 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Fri, 20 May 2022 09:17:51 +0200 Subject: [PATCH] Smaller output fixes --- src/cpl_cli/command/generate_service.py | 2 +- src/cpl_cli/command/help_service.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpl_cli/command/generate_service.py b/src/cpl_cli/command/generate_service.py index e42db95d..1661a58c 100644 --- a/src/cpl_cli/command/generate_service.py +++ b/src/cpl_cli/command/generate_service.py @@ -145,7 +145,7 @@ class GenerateService(CommandABC): ) if os.path.isfile(file_path): - Console.error(f'{String.first_to_upper(schematic)} already exists!') + Console.error(f'{String.first_to_upper(schematic)} already exists!\n') sys.exit() message = f'Creating {self._env.working_directory}/{template.path}/{template.name}' diff --git a/src/cpl_cli/command/help_service.py b/src/cpl_cli/command/help_service.py index c49f5e8f..51a4d02b 100644 --- a/src/cpl_cli/command/help_service.py +++ b/src/cpl_cli/command/help_service.py @@ -54,4 +54,4 @@ class HelpService(CommandABC): Console.write(f'\n\t{name} ') Console.set_foreground_color(ForegroundColorEnum.default) Console.write(f'{description}') - Console.write_line('\nRun \'cpl --help\' for command specific information\'s') + Console.write_line('\nRun \'cpl --help\' for command specific information\'s\n')