Skip to content

Commit

Permalink
Merge pull request #1062 from tacaswell/file_writer_format_tweak
Browse files Browse the repository at this point in the history
increased the padding on FileMovieWritter.frame_format_str
  • Loading branch information
pelson committed Aug 19, 2012
2 parents b3f6783 + 2b0f584 commit 1bd384e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/animation.py
Expand Up @@ -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):
Expand Down

0 comments on commit 1bd384e

Please sign in to comment.