Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct the error message to new filename. #1057

Merged
merged 1 commit into from
Jan 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions moviepy/video/io/gif_writers.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def write_gif_with_tempfiles(clip, filename, fps=None, program= 'ImageMagick',
error = error + ("This error can be due to the fact that "
"ImageMagick is not installed on your computer, or "
"(for Windows users) that you didn't specify the "
"path to the ImageMagick binary in file conf.py." )
"path to the ImageMagick binary in file config_defaults.py." )

raise IOError(error)

Expand Down Expand Up @@ -232,7 +232,7 @@ def write_gif(clip, filename, fps=None, program= 'ImageMagick',
error = error + ("This can be due to the fact that "
"ImageMagick is not installed on your computer, or "
"(for Windows users) that you didn't specify the "
"path to the ImageMagick binary in file conf.py." )
"path to the ImageMagick binary in file config_defaults.py." )

raise IOError(error)
if program == 'ImageMagick':
Expand Down