Skip to content

Commit

Permalink
always add bin
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Aug 25, 2023
1 parent 3815a56 commit 28b002e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pythena_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,13 @@ def run(self, odir_input, plot):
#Popen(['python', 'plot1d.py', '-d', odir, '--hst', '-n', info['problem'] + ' history'])
cmd1 = 'python plot1d.py -d %s/tab' % (odir)
cmd2 = 'python plot1d.py -d %s --hst' % (odir)
cmd3 = 'python plot2d.py -d %s' % (odir)
print(cmd1)
print(cmd2)
print(cmd3)
Popen(cmd1.split())
Popen(cmd2.split())
Popen(cmd3.split())
else:
w = DisplayWindow(cmd)
self.windows.append(w)
Expand Down

0 comments on commit 28b002e

Please sign in to comment.