From efd918bb0cfde24fda0213d7e1341a9a33e3f5ac Mon Sep 17 00:00:00 2001
From: Jameson Graef Rollins <jameson.rollins@ligo.org>
Date: Wed, 26 Aug 2020 09:04:31 -0700
Subject: [PATCH] cli: fix plotting bug in interactive shell

newlines '\n' in the string provided to ipshell.ex cause it to choke.
---
 gwinc/__main__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gwinc/__main__.py b/gwinc/__main__.py
index cadd7a7..a3a5b21 100644
--- a/gwinc/__main__.py
+++ b/gwinc/__main__.py
@@ -297,7 +297,7 @@ In [.]: plt.savefig("foo.pdf")
         ipshell.enable_pylab()
         if args.plot:
             ipshell.ex("fig = plot_noise(freq, traces, **plot_style)")
-            ipshell.ex("plt.title('{}')".format(plot_style['title']))
+            ipshell.ex("plt.title(plot_style['title'])")
         ipshell()
 
     ##########
-- 
GitLab