summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_subprocess.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-05-20 18:22:50 (GMT)
committerChristian Heimes <christian@python.org>2018-05-20 18:22:50 (GMT)
commitb85115ed4c5d4e80ab818b44401e71299de9e9a5 (patch)
tree626718c24e0ae3f90d8ca2e160aada9570eb4793 /Lib/asyncio/base_subprocess.py
parent073eca39a55b86ec7dd7a437ac0c910751a60ace (diff)
downloadcpython-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.py2
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: