Skip to content

Commit

Permalink
Tiny change to error
Browse files Browse the repository at this point in the history
Don't put a space before question or exclamation marks.
  • Loading branch information
Gloin1313 committed May 29, 2017
1 parent 99bfee2 commit 1c5c633
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moviepy/video/io/ffmpeg_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,12 +262,12 @@ def ffmpeg_parse_infos(filename, print_infos=False, check_duration=True,

if print_infos:
# print the whole info text returned by FFMPEG
print( infos )
print(infos)


lines = infos.splitlines()
if "No such file or directory" in lines[-1]:
raise IOError(("MoviePy error: the file %s could not be found !\n"
raise IOError(("MoviePy error: the file %s could not be found!\n"
"Please check that you entered the correct "
"path.")%filename)

Expand Down

0 comments on commit 1c5c633

Please sign in to comment.