From 319df973d9de785fa7a6af7987857b6ff9bedfb2 Mon Sep 17 00:00:00 2001 From: jboschen Date: Wed, 2 Oct 2019 11:27:21 -0500 Subject: [PATCH] Fix typo in cmd line --- examples/COUPLE/lammps_nwchem/nwchem_wrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/COUPLE/lammps_nwchem/nwchem_wrap.py b/examples/COUPLE/lammps_nwchem/nwchem_wrap.py index 4f5ef00c77..82eaf0d2e4 100644 --- a/examples/COUPLE/lammps_nwchem/nwchem_wrap.py +++ b/examples/COUPLE/lammps_nwchem/nwchem_wrap.py @@ -418,7 +418,7 @@ while 1: i += 1 log = "nwchem_lammps.out" archive = "nwchem_logs/nwchem_lammps" + str(i) + ".out" - cmd = nwchemcmd + " nwchem_lammps.nw > " log + cmd = nwchemcmd + " nwchem_lammps.nw > " + log print("\nLaunching NWChem ...") print(cmd) subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True)