Skip to content

Commit

Permalink
- changed none to None due to NameError
Browse files Browse the repository at this point in the history
  • Loading branch information
Eloar committed Dec 5, 2014
1 parent e8b8a78 commit 618c2d6
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 618c2d6

Please sign in to comment.