OSError catching in the test as well

This commit is contained in:
wiredfool 2014-03-26 13:31:20 -07:00
parent 6e8c8bf9d4
commit 55ea6c01b1

View File

@ -3,7 +3,7 @@ from tester import *
from PIL import Image
try:
from PIL import ImageTk
except ImportError as v:
except (OSError, ImportError) as v:
skip(v)
success()