aboutsummaryrefslogtreecommitdiff
path: root/btt/bno_plot.py
diff options
context:
space:
mode:
Diffstat (limited to 'btt/bno_plot.py')
-rw-r--r--btt/bno_plot.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/btt/bno_plot.py b/btt/bno_plot.py
index 19dfdfd..aa92480 100644
--- a/btt/bno_plot.py
+++ b/btt/bno_plot.py
@@ -114,13 +114,12 @@ if __name__ == '__main__':
pid = os.fork()
if pid == 0:
- cmd = '/usr/bin/gnuplot %s/plot.cmds -' % tmpdir
+ cmd = 'gnuplot %s/plot.cmds -' % tmpdir
if verbose: print 'Executing %s' % cmd
- cmd = cmd.split(None)
os.chdir(tmpdir)
- os.execvp(cmd[0], cmd)
+ os.system(cmd)
sys.exit(1)
os.waitpid(pid, 0)