From 32b4b2c71ced9702873a1327c43175ffc0fcee56 Mon Sep 17 00:00:00 2001 From: Michael Droettboom Date: Mon, 27 Jan 2014 11:29:15 -0500 Subject: [PATCH] Remove clear_temp from ani.save call --- examples/animation/double_pendulum_animated.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/animation/double_pendulum_animated.py b/examples/animation/double_pendulum_animated.py index da90eb2cca92..c08893809d28 100644 --- a/examples/animation/double_pendulum_animated.py +++ b/examples/animation/double_pendulum_animated.py @@ -84,5 +84,5 @@ def animate(i): ani = animation.FuncAnimation(fig, animate, np.arange(1, len(y)), interval=25, blit=True, init_func=init) -#ani.save('double_pendulum.mp4', fps=15, clear_temp=True) +#ani.save('double_pendulum.mp4', fps=15) plt.show()