mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-29 20:34:22 +01:00
Fix for message length
This commit is contained in:
parent
0e4c2d8865
commit
e3a821d79f
1 changed files with 2 additions and 2 deletions
|
@ -100,9 +100,9 @@ class MultiProcess(Configs):
|
|||
if not self.silent_mode and not self.option_for_silent:
|
||||
message: str = f'Error occurred with process. Please check the log file.'
|
||||
print()
|
||||
print(79 * '=')
|
||||
print(len(message) * '=')
|
||||
print(f'{self.bred}{message}{self.endc}')
|
||||
print(79 * '=')
|
||||
print(len(message) * '=')
|
||||
print()
|
||||
raise SystemExit(process.returncode)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue