mirror of
https://github.com/python/cpython.git
synced 2025-10-07 23:51:16 +00:00
[3.7] bpo-32262: Fix typo in f-string (GH-7016)
Fix typo from commit6370f345e1
(cherry picked from commitd361e99868
) Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
073eca39a5
commit
b85115ed4c
2 changed files with 25 additions and 1 deletions
|
@ -57,7 +57,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
|
|||
if self._closed:
|
||||
info.append('closed')
|
||||
if self._pid is not None:
|
||||
info.append(f'pid={self.pid}')
|
||||
info.append(f'pid={self._pid}')
|
||||
if self._returncode is not None:
|
||||
info.append(f'returncode={self._returncode}')
|
||||
elif self._pid is not None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue