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
1 parent 7f0c0eb commit 8631c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/animation.py
Expand Up @@ -245,7 +245,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 8631c49

Please sign in to comment.