mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-32262: Fix f-string (#4787)
This commit is contained in:
parent
6370f345e1
commit
19d0d54809
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
|||
def _getaddrinfo_debug(self, host, port, family, type, proto, flags):
|
||||
msg = [f"{host}:{port!r}"]
|
||||
if family:
|
||||
msg.append(f'family={family!r}' % family)
|
||||
msg.append(f'family={family!r}')
|
||||
if type:
|
||||
msg.append(f'type={type!r}')
|
||||
if proto:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue