Skip to content

Commit

Permalink
Merge pull request #211 from LunarLanding/patch-1
Browse files Browse the repository at this point in the history
Fixed missing list
  • Loading branch information
bearney74 authored Feb 21, 2017
2 parents 2e036d3 + f0372ad commit e4d9032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moviepy/video/VideoClip.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def blit_on(self, picture, t):

# is the position relative (given in % of the clip's size) ?
if self.relative_pos:
for i, dim in enumerate(wf, hf):
for i, dim in enumerate([wf, hf]):
if not isinstance(pos[i], str):
pos[i] = dim * pos[i]

Expand Down

0 comments on commit e4d9032

Please sign in to comment.