Skip to content

Commit

Permalink
Merge pull request #95 from Eloar/patch-1
Browse files Browse the repository at this point in the history
- changed none to None due to NameError
  • Loading branch information
Zulko committed Dec 5, 2014
2 parents e8b8a78 + 618c2d6 commit fcaa8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moviepy/video/io/ImageSequenceClip.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(self, sequence, fps=None, durations=None, with_mask=True,
for f in os.listdir(sequence)])

self.fps = fps
if fps is not none:
if fps is not None:
durations = [1.0/fps for image in sequence]
self.durations = durations
self.images_starts = [0]+list(np.cumsum(durations))
Expand Down

0 comments on commit fcaa8bc

Please sign in to comment.