Commit 19d0d548 authored by Yury Selivanov's avatar Yury Selivanov Committed by GitHub

bpo-32262: Fix f-string (#4787)

parent 6370f345
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment