Skip to content

Commit

Permalink
Merge pull request #37 from molssi-seamm/dev
Browse files Browse the repository at this point in the history
Minor update due to changes in molsystem
  • Loading branch information
seamm authored Dec 7, 2024
2 parents 425f60e + 159e503 commit 9514e0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
=======
History
=======
2024.12.7 -- Minor update due to changes in molsystem
* The molsystem was updated to improve the handling of properties. This required
changes in this module to match the new molsystem.

2024.10.15 -- Bugfix: error if used in a loop and previous directories deleted.
* The code crashed if called with a loop in the flowchart, and the last directory of
a previous loop iteration was deleted before running the next iteration.
Expand Down
2 changes: 1 addition & 1 deletion psi4_step/energy.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def analyze(self, indent="", data={}, out=[]):
system, configuration = self.get_system_configuration()
obConversion = openbabel.OBConversion()
obConversion.SetOutFormat("sdf")
obMol = configuration.to_OBMol(properties="all")
obMol = configuration.to_OBMol(properties="*")
title = f"SEAMM={system.name}/{configuration.name}"
obMol.SetTitle(title)
sdf = obConversion.WriteString(obMol)
Expand Down

0 comments on commit 9514e0b

Please sign in to comment.