Skip to content

Commit 8493849

Browse files
committed
fix function call
1 parent aba889f commit 8493849

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OMPython/ModelicaSystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1078,7 +1078,7 @@ def simulate_cmd(
10781078
# see https://github.com/OpenModelica/OpenModelica/pull/14813
10791079
version = self._session.sendExpression("getVersion()", parsed=True)
10801080
print(f"OpenModelica version string: {version}")
1081-
major, minor, patch = parse_om_version(version)
1081+
major, minor, patch = self.parse_om_version(version)
10821082
if (major, minor, patch) > (1, 25, 0):
10831083
print("Version > 1.25.0")
10841084
for key, opt_value in self._simulate_options_override.items():

0 commit comments

Comments
 (0)