force range to a tuple, py3

This commit is contained in:
wiredfool 2017-12-21 22:42:34 +00:00
parent f3ff2b4420
commit 48260643d7

View File

@ -284,7 +284,7 @@ class TestFileGif(PillowTestCase):
out, out,
save_all=True, save_all=True,
append_images=im_list[1:], append_images=im_list[1:],
disposal=range(len(im_list)) disposal=tuple(range(len(im_list)))
) )
img = Image.open(out) img = Image.open(out)