From 8bc304f0948eaf22e1fb40d109854867647b7611 Mon Sep 17 00:00:00 2001 From: goodboy Date: Wed, 29 Apr 2026 18:41:30 -0400 Subject: [PATCH] TOSQUASH 2d4995e0, fix _pformat -> devx.pformat.. --- tractor/devx/_stackscope.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tractor/devx/_stackscope.py b/tractor/devx/_stackscope.py index d4b78398..85f57098 100644 --- a/tractor/devx/_stackscope.py +++ b/tractor/devx/_stackscope.py @@ -112,11 +112,11 @@ def dump_task_tree() -> None: # |_[Storage/Memory/IPC-Stream/Data-Struct fpath: str = f'/tmp/tractor-stackscope-{os.getpid()}.log' - from . import _pformat - actor_repr: str = _pformat.nest_from_op( + from . import pformat + actor_repr: str = pformat.nest_from_op( input_op='|_', text=f'{actor}', - nest_prefilx='|_', + nest_prefix='|_', nest_indent=3, ) full_dump: str = (