TOSQUASH 2d4995e0, fix _pformat -> devx.pformat..

subint_forkserver_backend
Gud Boi 2026-04-29 18:41:30 -04:00
parent fc5e80fea5
commit 8bc304f094
1 changed files with 3 additions and 3 deletions

View File

@ -112,11 +112,11 @@ def dump_task_tree() -> None:
# |_[Storage/Memory/IPC-Stream/Data-Struct # |_[Storage/Memory/IPC-Stream/Data-Struct
fpath: str = f'/tmp/tractor-stackscope-{os.getpid()}.log' fpath: str = f'/tmp/tractor-stackscope-{os.getpid()}.log'
from . import _pformat from . import pformat
actor_repr: str = _pformat.nest_from_op( actor_repr: str = pformat.nest_from_op(
input_op='|_', input_op='|_',
text=f'{actor}', text=f'{actor}',
nest_prefilx='|_', nest_prefix='|_',
nest_indent=3, nest_indent=3,
) )
full_dump: str = ( full_dump: str = (