diff --git a/HISTORY.rst b/HISTORY.rst index 10db99a..52a58a5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ ======= History ======= +2024.6.3 -- Bugfix: handling of options for subflowchart + * Fixed a bug where the options for the subflowchart were not being parsed + correctly. + 2024.5.26 -- Updated for new task handling * The new handling of running tasks such as LAMMPS required a small change in the code. diff --git a/diffusivity_step/diffusivity.py b/diffusivity_step/diffusivity.py index 71f2a9c..a084d69 100644 --- a/diffusivity_step/diffusivity.py +++ b/diffusivity_step/diffusivity.py @@ -550,6 +550,7 @@ def create_parser(self): ) # Now need to walk through the steps in the subflowchart... + self.subflowchart.reset_visited() node = self.subflowchart.get_node("1").next() while node is not None: node = node.create_parser()