Skip to content

Commit

Permalink
Merge pull request #168 from jsseb/patch-1
Browse files Browse the repository at this point in the history
Delete duplicated import os
  • Loading branch information
Zulko committed May 11, 2015
2 parents 166efcb + 951b894 commit b1000f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions moviepy/video/VideoClip.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
convert_masks_to_RGB,
use_clip_fps_by_default)

import os
try:
from subprocess import DEVNULL # py3k
except ImportError:
Expand Down Expand Up @@ -1218,4 +1217,4 @@ def search(string, arg):
"""
string = string.lower()
names_list = TextClip.list(arg)
return [name for name in names_list if string in name.lower()]
return [name for name in names_list if string in name.lower()]

0 comments on commit b1000f6

Please sign in to comment.