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.
2 parents 50c92b1 + 3e416c2 commit b992ba1Copy full SHA for b992ba1
jupyter_client/manager.py
@@ -229,9 +229,10 @@ def start_kernel(self, **kw):
229
"""
230
if self.transport == 'tcp' and not is_local_ip(self.ip):
231
raise RuntimeError("Can only launch a kernel on a local interface. "
232
+ "This one is not: %s."
233
"Make sure that the '*_address' attributes are "
234
"configured properly. "
- "Currently valid addresses are: %s" % local_ips()
235
+ "Currently valid addresses are: %s" % (self.ip, local_ips())
236
)
237
238
# write connection file / get default ports
0 commit comments