Skip to content

Commit

Permalink
Prevented SCRF options in Gaussian from being considered as specifica…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
RaphaelRobidas committed Mar 1, 2022
1 parent 3226008 commit 42a1a85
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ccinput/packages/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,8 @@ def create_input_file(self):
self.command_line = cmd_formatted + self.command_line
else:
self.command_line = self.command_line + cmd_formatted
self.confirmed_specifications += cmd_formatted
if cmd.lower() != 'scrf':
self.confirmed_specifications += cmd_formatted

self.confirmed_specifications = self.confirmed_specifications.strip()

Expand Down

0 comments on commit 42a1a85

Please sign in to comment.