mirror of https://github.com/google/oss-fuzz.git
fonttools: import correct module (#9322)
Fixes: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=54618
This commit is contained in:
parent
ab04f459fa
commit
936463cc61
|
@ -15,8 +15,11 @@
|
|||
import sys
|
||||
import atheris
|
||||
|
||||
from fontTools import ttx
|
||||
from fontTools import misc
|
||||
from fontTools import (
|
||||
ttx,
|
||||
misc,
|
||||
ttLib
|
||||
)
|
||||
import xml
|
||||
|
||||
|
||||
|
@ -38,7 +41,7 @@ def TestOneInput(data):
|
|||
pass
|
||||
except misc.xmlReader.TTXParseError:
|
||||
pass
|
||||
except fontTools.ttLib.TTLibError:
|
||||
except ttLib.TTLibError:
|
||||
pass
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue