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 77784a6 commit 41c5954Copy full SHA for 41c5954
jupyter_client/manager.py
@@ -219,9 +219,10 @@ def start_kernel(self, **kw):
219
"""
220
if self.transport == 'tcp' and not is_local_ip(self.ip):
221
raise RuntimeError("Can only launch a kernel on a local interface. "
222
+ "This one is not: %s."
223
"Make sure that the '*_address' attributes are "
224
"configured properly. "
- "Currently valid addresses are: %s" % local_ips()
225
+ "Currently valid addresses are: %s" % (self.ip, local_ips())
226
)
227
228
# write connection file / get default ports
0 commit comments