aboutsummaryrefslogtreecommitdiffstats
path: root/gnuplot.py
diff options
context:
space:
mode:
authorBjörn B. Brandenburg <bbb@cs.unc.edu>2010-06-08 21:40:02 -0400
committerBjörn B. Brandenburg <bbb@cs.unc.edu>2010-06-08 21:40:02 -0400
commit67ae8f6ec0ed6a727d73ad45806bfd50804c35b2 (patch)
tree0ebb2c3506295fc2bef5d2d8202339dfe8bc4340 /gnuplot.py
parent8cae15168721733dc7f052a1a704752b8568c9d4 (diff)
Allot graph titles with '
Diffstat (limited to 'gnuplot.py')
-rwxr-xr-xgnuplot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuplot.py b/gnuplot.py
index aaff8f1..3a7b364 100755
--- a/gnuplot.py
+++ b/gnuplot.py
@@ -184,7 +184,7 @@ class Plot(object):
184 if self.key: 184 if self.key:
185 g('set key %s' % self.key) 185 g('set key %s' % self.key)
186 if self.title: 186 if self.title:
187 g("set title '%s'" % self.title) 187 g('set title "%s"' % self.title)
188 188
189 logscale = "" 189 logscale = ""
190 if self.xlog: 190 if self.xlog: