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