From 35bab0c679144af7196104521233cf87e78082e5 Mon Sep 17 00:00:00 2001 From: Saimon Michelson Date: Wed, 18 Feb 2026 19:15:51 -0500 Subject: [PATCH] update method to unpack source file path from tuple --- cterasdk/cio/core/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cterasdk/cio/core/commands.py b/cterasdk/cio/core/commands.py index 73a1c3f9..672e9be4 100644 --- a/cterasdk/cio/core/commands.py +++ b/cterasdk/cio/core/commands.py @@ -1184,7 +1184,7 @@ def __init__(self, function, receiver, block, path, new_name, resolver, cursor=N resolver=resolver, cursor=cursor) def _before_command(self): - raise_or_suppress_access_error(self._receiver, self.paths[0]) + raise_or_suppress_access_error(self._receiver, self.paths[0][0]) return super()._before_command() def _try_with_resolver(self, cursor):