Skip to content

Commit

Permalink
make python3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Gygli committed Oct 6, 2017
1 parent a9eee20 commit 01ebcc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def test_issue_655():
with VideoFileClip(video_file) as v:
with v.subclip(1,2) as s:
pass
v.subclip(*subclip).iter_frames().next()
next(v.subclip(*subclip).iter_frames())
assert True


Expand Down

0 comments on commit 01ebcc3

Please sign in to comment.