Skip to content

Commit f38fcb3

Browse files
committed
fixed a typo
1 parent 1935f12 commit f38fcb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/animation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ class FFMpegFileWriter(FileMovieWriter, FFMpegBase):
399399
def _args(self):
400400
# Returns the command line parameters for subprocess to use
401401
# ffmpeg to create a movie using a collection of temp images
402-
return [self.bin_path(), '-i', self._base_temp_name()-vframes,
402+
return [self.bin_path(), '-i', self._base_temp_name(),
403403
'-vframes', str(self._frame_counter),
404404
'-r', str(self.fps), ] + self.output_args
405405

0 commit comments

Comments
 (0)