Skip to content

Commit

Permalink
Always expose the debug module
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed Jul 30, 2020
1 parent e92d888 commit 6be6e2b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tractor/_actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,11 @@ def __init__(
# will be passed to children
self._parent_main_data = _mp_fixup_main._mp_figure_out_main()

# always include debugging tools module
rpc_module_paths.append('tractor._debug')

mods = {}
for name in rpc_module_paths or ():
for name in rpc_module_paths:
mod = importlib.import_module(name)
mods[name] = _get_mod_abspath(mod)

Expand Down

0 comments on commit 6be6e2b

Please sign in to comment.