From 67ae8f6ec0ed6a727d73ad45806bfd50804c35b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20B=2E=20Brandenburg?= Date: Tue, 8 Jun 2010 21:40:02 -0400 Subject: Allot graph titles with ' --- gnuplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnuplot.py') 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): if self.key: g('set key %s' % self.key) if self.title: - g("set title '%s'" % self.title) + g('set title "%s"' % self.title) logscale = "" if self.xlog: -- cgit v1.2.2