Skip to content

Commit

Permalink
Merge pull request #267 from TheoChem-VU/266-issue-where-orca-input-f…
Browse files Browse the repository at this point in the history
…all-is-called-with-doubled-in

Fixed an issue with wrongly named input file in ORCAJob call when not using temporary directories
  • Loading branch information
YHordijk authored Jun 18, 2024
2 parents 4d14561 + fdab365 commit a66abe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tcutility/job/orca.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def _setup_job(self):
runf.write('rm -rf $TMPDIR\n')

else:
runf.write(f'{self.orca_path} {self.inputfile_path}.in\n')
runf.write(f'{self.orca_path} {self.inputfile_path}\n')

runf.write('\n'.join(self._postambles))

Expand Down

0 comments on commit a66abe6

Please sign in to comment.