Skip to content

Commit e90aa31

Browse files
committed
[OMCSessionZMQ] fix omcpath()
1 parent df567aa commit e90aa31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OMPython/OMCSession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ def omcpath(self, *path) -> OMCPath:
576576
"""
577577
Create an OMCPath object based on the given path segments and the current OMC session.
578578
"""
579-
return self.omc_process.omcpath(path)
579+
return self.omc_process.omcpath(*path)
580580

581581
def omcpath_tempdir(self, tempdir_base: Optional[OMCPath] = None) -> OMCPath:
582582
"""

0 commit comments

Comments
 (0)