Skip to content

Commit

Permalink
Merge pull request #2069 from jakevdp/anim_fix
Browse files Browse the repository at this point in the history
BUG: pass kwargs to TimedAnimation
  • Loading branch information
mdboom committed May 28, 2013
2 parents 7e49a5e + 5ed1869 commit 220306b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/animation.py
Expand Up @@ -253,7 +253,7 @@ def isAvailable(cls):
class FileMovieWriter(MovieWriter):
'`MovieWriter` subclass that handles writing to a file.'
def __init__(self, *args, **kwargs):
MovieWriter.__init__(self, *args)
MovieWriter.__init__(self, *args, **kwargs)
self.frame_format = rcParams['animation.frame_format']

def setup(self, fig, outfile, dpi, frame_prefix='_tmp', clear_temp=True):
Expand Down

0 comments on commit 220306b

Please sign in to comment.