Skip to content

Commit

Permalink
Correct the error message to new filename (conf.py -> config_defaults…
Browse files Browse the repository at this point in the history
….py) (#1057)

The file which needs to be manually edited now is `config_defaults.py`.
  • Loading branch information
jwg4 authored Jan 29, 2020
1 parent 6f652be commit f670d1a
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit f670d1a

Please sign in to comment.