mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-26 01:04:29 +03:00
force range to a tuple, py3
This commit is contained in:
parent
f3ff2b4420
commit
48260643d7
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user