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 8a43178 commit 1060b87Copy full SHA for 1060b87
datajoint/connection.py
@@ -23,7 +23,7 @@ def get_host_hook(host_input):
23
try:
24
return connection_plugins[plugin_name]['object'].load().get_host(host_input)
25
except KeyError:
26
- raise DataJointError(
+ raise errors.DataJointError(
27
"Connection plugin '{}' not found.".format(plugin_name))
28
else:
29
return host_input
@@ -35,7 +35,7 @@ def connect_host_hook(connection_obj):
35
36
connection_plugins[plugin_name]['object'].load().connect_host(connection_obj)
37
38
39
40
41
connection_obj.connect()
0 commit comments