...
This commit is contained in:
parent
d6a43a7729
commit
3cea8f24d4
1 changed files with 1 additions and 1 deletions
|
|
@ -249,7 +249,7 @@ def fork(self) -> Optional[int]:
|
|||
remove_cloexec(stdin_read_fd)
|
||||
else:
|
||||
stdin_read_fd = stdin_write_fd = -1
|
||||
env = tuple('{}={}'.format(k, v) for k, v in self.final_env.items())
|
||||
env = tuple(f'{k}={v}' for k, v in self.final_env.items())
|
||||
argv = list(self.argv)
|
||||
exe = argv[0]
|
||||
if is_macos and exe == shell_path:
|
||||
|
|
|
|||
Loading…
Reference in a new issue