Skip to content

Commit 7680026

Browse files
committed
EXODUS.PY: Fix calling incorrect function
1 parent eff1457 commit 7680026

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/seacas/scripts/exodus3.in.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@
7878

7979
EXODUS_PY_COPYRIGHT_AND_LICENSE = __doc__
8080

81-
EXODUS_PY_VERSION = "1.21.5 (seacas-py3)"
81+
EXODUS_PY_VERSION = "1.21.6 (seacas-py3)"
8282

8383
EXODUS_PY_COPYRIGHT = """
84-
You are using exodus.py v 1.21.5 (seacas-py3), a python wrapper of some of the exodus library.
84+
You are using exodus.py v 1.21.6 (seacas-py3), a python wrapper of some of the exodus library.
8585
8686
Copyright (c) 2013-2023 National Technology &
8787
Engineering Solutions of Sandia, LLC (NTESS). Under the terms of
@@ -2450,7 +2450,7 @@ def get_variable_values_multi_time(self, objType, entityId, name, begin_step, en
24502450
var_id = names.index(name) + 1
24512451
numVals = self.get_entity_count(objType, entityId)
24522452

2453-
values = self.__ex_get_var(begin_step, end_step, objType, var_id, entityId, numVals)
2453+
values = self.__ex_get_var_multi_time(begin_step, end_step, objType, var_id, entityId, numVals)
24542454
if self.use_numpy:
24552455
values = ctype_to_numpy(self, values)
24562456
return values

0 commit comments

Comments
 (0)