diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-05-20 18:22:50 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2018-05-20 18:22:50 (GMT) |
commit | b85115ed4c5d4e80ab818b44401e71299de9e9a5 (patch) | |
tree | 626718c24e0ae3f90d8ca2e160aada9570eb4793 /Lib/asyncio/base_subprocess.py | |
parent | 073eca39a55b86ec7dd7a437ac0c910751a60ace (diff) | |
download | cpython-b85115ed4c5d4e80ab818b44401e71299de9e9a5.zip cpython-b85115ed4c5d4e80ab818b44401e71299de9e9a5.tar.gz cpython-b85115ed4c5d4e80ab818b44401e71299de9e9a5.tar.bz2 |
[3.7] bpo-32262: Fix typo in f-string (GH-7016)
Fix typo from commit 6370f345e1d5829e1fba59cd695c8b82c5a8c620
(cherry picked from commit d361e99868a9eaa7ffce9341e1207705dbb66b50)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Lib/asyncio/base_subprocess.py')
-rw-r--r-- | Lib/asyncio/base_subprocess.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index 7c17066..b547c44 100644 --- a/Lib/asyncio/base_subprocess.py +++ b/Lib/asyncio/base_subprocess.py @@ -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: |