Smaller output fixes

This commit is contained in:
Sven Heidemann 2022-05-20 09:17:51 +02:00
parent c66a81c0ec
commit ccca904cb8
2 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ class GenerateService(CommandABC):
) )
if os.path.isfile(file_path): 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() sys.exit()
message = f'Creating {self._env.working_directory}/{template.path}/{template.name}' message = f'Creating {self._env.working_directory}/{template.path}/{template.name}'

View File

@ -54,4 +54,4 @@ class HelpService(CommandABC):
Console.write(f'\n\t{name} ') Console.write(f'\n\t{name} ')
Console.set_foreground_color(ForegroundColorEnum.default) Console.set_foreground_color(ForegroundColorEnum.default)
Console.write(f'{description}') Console.write(f'{description}')
Console.write_line('\nRun \'cpl <command> --help\' for command specific information\'s') Console.write_line('\nRun \'cpl <command> --help\' for command specific information\'s\n')