cleanup tempfile

This commit is contained in:
wiredfool 2014-03-04 22:02:22 -08:00
parent ae5bcb8e84
commit 1706e59d1c

View File

@ -38,7 +38,7 @@ def test_roundtrip():
def test_roundtrip2():
#see https://github.com/python-imaging/Pillow/issues/403
out = 'temp.gif'#tempfile('temp.gif')
out = tempfile('temp.gif')
im = Image.open('Images/lena.gif')
im2 = im.copy()
im2.save(out)