aboutsummaryrefslogtreecommitdiffstats
path: root/gnuplot.py
diff options
context:
space:
mode:
Diffstat (limited to 'gnuplot.py')
-rwxr-xr-xgnuplot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuplot.py b/gnuplot.py
index 2604cb0..b717683 100755
--- a/gnuplot.py
+++ b/gnuplot.py
@@ -126,8 +126,8 @@ def pipe2gnuplot(cmds):
126 proc.wait() 126 proc.wait()
127 127
128def gnuplot(*args, **kargs): 128def gnuplot(*args, **kargs):
129 cmd = gnuplot_cmd(*args, **kargs) 129 cmd = gnuplot_cmd(*args, **kargs)
130 pipe2gnuplot(cmd) 130 pipe2gnuplot(cmd)
131 131
132def eps2pdf(file): 132def eps2pdf(file):
133 Popen(['ps2pdf', '-dEPSCrop', '%s.eps' % file]).wait() 133 Popen(['ps2pdf', '-dEPSCrop', '%s.eps' % file]).wait()