Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ccinput/drivers/pysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def add_section(self, section):
else:
self.sections[section] = {}
else:
logger.warning(f"Duplicate specifications for section {section} were given")
print(f"Duplicate specifications for section {section} were given")

def handle_specifications(self):
s = self.clean(self.calc.parameters.specifications.lower())
Expand Down
3 changes: 3 additions & 0 deletions ccinput/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,9 @@ def get_solvent(solvent, software, solvation_model="smd"):
return "octanol"
# Note that ch2cl2 is a valid keyword for SMD, although not listed in the manual

if abs_solvent == "":
return abs_solvent

return SOFTWARE_SOLVENTS[software][abs_solvent]


Expand Down
Loading