Closed
Description
The following is using matplotlib 1.4.3, but the relevant code is the same on github:
In [45]: import matplotlib
In [46]: matplotlib.__version__
Out[46]: '1.4.3'
In [47]: from matplotlib.animation import MovieWriter
In [48]: MovieWriter()
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-48-68333e95c4ab> in <module>()
----> 1 MovieWriter()
/Users/warren/anaconda/lib/python2.7/site-packages/matplotlib/animation.pyc in __init__(self, fps, codec, bitrate, extra_args, metadata)
141
142 if extra_args is None:
--> 143 self.extra_args = list(rcParams[self.args_key])
144 else:
145 self.extra_args = extra_args
AttributeError: 'MovieWriter' object has no attribute 'args_key'
What is self.args_key
supposed to be?