From a183a85288f720ddede0bb59b0874dd686ddd95b Mon Sep 17 00:00:00 2001 From: Jens Hedegaard Nielsen Date: Fri, 17 Jul 2015 14:56:30 -0500 Subject: [PATCH] Dont call plt.ion it breaks docs build --- examples/pylab_examples/system_monitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pylab_examples/system_monitor.py b/examples/pylab_examples/system_monitor.py index 90e5aa8de02e..3094babf4183 100644 --- a/examples/pylab_examples/system_monitor.py +++ b/examples/pylab_examples/system_monitor.py @@ -24,7 +24,7 @@ def get_stats(): # turn interactive mode on for dynamic updates. If you aren't in # interactive mode, you'll need to use a GUI event handler/timer. -plt.ion() +# plt.ion() fig, ax = plt.subplots() ind = np.arange(1, 4)