From 2b0f584dd75d949f8c0d7ead4711fcaa9e176f56 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Wed, 8 Aug 2012 15:08:15 -0500 Subject: [PATCH] increased the padding on FileMovieWritter.frame_format_str --- lib/matplotlib/animation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/animation.py b/lib/matplotlib/animation.py index 843879c29e9d..26971b57fc1c 100644 --- a/lib/matplotlib/animation.py +++ b/lib/matplotlib/animation.py @@ -278,7 +278,7 @@ def setup(self, fig, outfile, dpi, frame_prefix='_tmp', clear_temp=True): self.temp_prefix = frame_prefix self._frame_counter = 0 # used for generating sequential file names self._temp_names = list() - self.fname_format_str = '%s%%04d.%s' + self.fname_format_str = '%s%%07d.%s' @property def frame_format(self):