We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae8105 commit 7ac139cCopy full SHA for 7ac139c
jupyter_client/localinterfaces.py
@@ -237,16 +237,16 @@ def _load_ips(suppress_exceptions=True):
237
if os.name == "nt":
238
try:
239
return _load_ips_ipconfig()
240
- except NoIPAddresses:
+ except (OSError, NoIPAddresses):
241
pass
242
else:
243
244
return _load_ips_ip()
245
246
247
248
return _load_ips_ifconfig()
249
250
251
252
# lowest priority, use gethostbyname
0 commit comments