mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-25 00:34:14 +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,
|
||||
save_all=True,
|
||||
append_images=im_list[1:],
|
||||
disposal=range(len(im_list))
|
||||
disposal=tuple(range(len(im_list)))
|
||||
)
|
||||
|
||||
img = Image.open(out)
|
||||
|
|
Loading…
Reference in New Issue
Block a user