aboutsummaryrefslogtreecommitdiffstats
path: root/gnuplot.py
diff options
context:
space:
mode:
authorAndrea Bastoni <bastoni@sprg.uniroma2.it>2010-04-21 22:47:07 -0400
committerAndrea Bastoni <bastoni@sprg.uniroma2.it>2010-04-21 22:47:07 -0400
commit3ccfe7790cb0a678f635895e20a359eb89f6f712 (patch)
treea15ea09350bc17c77fac67b1c46cc7a778a5f14b /gnuplot.py
parentcf47870875e03488442ed39d96acfddfa2993f02 (diff)
Changes made to manually tweak plots for april version of ospert10ospert10-plot-april-submission
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()