Skip to content

Commit

Permalink
Merge pull request #120 from ReactionMechanismGenerator/input_fix
Browse files Browse the repository at this point in the history
BugFix: Remove extra parentheses in gaussian input file
  • Loading branch information
oscarwumit committed Apr 29, 2019
2 parents feab6fb + dd278b1 commit 44030c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def write_input_file(self):
if self.job_type in ['conformer', 'opt']:
if self.software == 'gaussian':
if self.is_ts:
job_type_1 = 'opt=(ts, calcfc, noeigentest, maxstep=5))'
job_type_1 = 'opt=(ts, calcfc, noeigentest, maxstep=5)'
else:
job_type_1 = 'opt=(calcfc, noeigentest)'
if self.checkfile is not None:
Expand Down

0 comments on commit 44030c4

Please sign in to comment.