From 42a0f3a5e8bf60909440a18c14e1f28be15d86df Mon Sep 17 00:00:00 2001 From: "d.kovalenko" Date: Tue, 22 Sep 2026 03:01:56 +0300 Subject: [PATCH] fix: NodeApp::_gettempdir is corrected --- src/node_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_app.py b/src/node_app.py index a6dfd602..8d6e40c2 100644 --- a/src/node_app.py +++ b/src/node_app.py @@ -300,7 +300,7 @@ def _gettempdir(self) -> str: # # Paranoid checks # - if type(v) is str: + if type(v) is not str: __class__._raise_bugcheck("os_ops.get_tempdir returned a value with type {}.".format( type(v).__name__, ))