From d40a66619e24e347f79eed17c266b2e663615ff8 Mon Sep 17 00:00:00 2001 From: Peter Teuben Date: Wed, 23 Aug 2023 09:17:06 -0400 Subject: [PATCH] history, not cmd --- pythena_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythena_run.py b/pythena_run.py index d6fac09..0aaa769 100755 --- a/pythena_run.py +++ b/pythena_run.py @@ -203,7 +203,7 @@ def run(self, odir_input, plot): cmd += '%s=%s ' % (k, self.input[k].text()) print(cmd) - hname = f'{odir_input.text()}/cmd' + hname = f'{odir_input.text()}/history' with open(hname, 'w') as file: file.write(cmd)