Compare commits
1 commit
1c0e7ee5a9
...
238cc05d3b
| Author | SHA1 | Date | |
|---|---|---|---|
|
238cc05d3b |
1 changed files with 1 additions and 3 deletions
|
|
@ -115,14 +115,12 @@ class ExecContext(Base):
|
|||
throw: bool,
|
||||
verbose: bool | None,
|
||||
) -> None:
|
||||
if title is None:
|
||||
title = f'{parent.uri}: Running {self.pretty_cmd} -'
|
||||
self.__cmd = cmd
|
||||
self.__wd = wd
|
||||
self.__log_prefix = log_prefix
|
||||
self.__parent = parent
|
||||
self.__title = title
|
||||
self.__pretty_cmd: str | None = None
|
||||
self.__title = f'{parent.uri}: Running {self.pretty_cmd} -'
|
||||
self.__delim = f'---- {title} -'
|
||||
delim_len = 120
|
||||
self.__delim += '-' * max(0, delim_len - len(self.__delim))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue