[3.7] bpo-32262: Fix typo in f-string (GH-7016)

Fix typo from commit 6370f345e1

(cherry picked from commit d361e99868)
Co-authored-by: Christian Heimes <christian@python.org>
This commit is contained in:
Miss Islington (bot) 2018-05-20 11:22:50 -07:00 committed by Christian Heimes
parent 073eca39a5
commit b85115ed4c
2 changed files with 25 additions and 1 deletions

View file

@ -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: