bpo-32262: Fix f-string (#4787)
This commit is contained in:
parent
6370f345e1
commit
19d0d54809
|
@ -631,7 +631,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
||||||
def _getaddrinfo_debug(self, host, port, family, type, proto, flags):
|
def _getaddrinfo_debug(self, host, port, family, type, proto, flags):
|
||||||
msg = [f"{host}:{port!r}"]
|
msg = [f"{host}:{port!r}"]
|
||||||
if family:
|
if family:
|
||||||
msg.append(f'family={family!r}' % family)
|
msg.append(f'family={family!r}')
|
||||||
if type:
|
if type:
|
||||||
msg.append(f'type={type!r}')
|
msg.append(f'type={type!r}')
|
||||||
if proto:
|
if proto:
|
||||||
|
|
Loading…
Reference in New Issue