From f5887275548a97623dd8e67e33d390b8b0caad7f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 26 Apr 2015 02:06:36 -0400 Subject: [PATCH] Fixup; ouch! --- Lib/fontTools/ttLib/tables/otConverters.py | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Lib/fontTools/ttLib/tables/otConverters.py b/Lib/fontTools/ttLib/tables/otConverters.py index a683b3d41..f300e6c38 100644 --- a/Lib/fontTools/ttLib/tables/otConverters.py +++ b/Lib/fontTools/ttLib/tables/otConverters.py @@ -384,18 +384,18 @@ class DeltaValue(BaseConverter): converterMapping = { # type class - "int16" Short, - "uint16" UShort, - "uint24" UInt24, - "uint32" ULong, - "Version" Version, - "Tag" Tag, - "GlyphID" GlyphID, - "DeciPoints" DeciPoints, - "Fixed" Fixed, - "struct" Struct, - "Offset" Table, - "LOffset" LTable, - "ValueRecord" ValueRecord, - "DeltaValue" DeltaValue, + "int16": Short, + "uint16": UShort, + "uint24": UInt24, + "uint32": ULong, + "Version": Version, + "Tag": Tag, + "GlyphID": GlyphID, + "DeciPoints": DeciPoints, + "Fixed": Fixed, + "struct": Struct, + "Offset": Table, + "LOffset": LTable, + "ValueRecord": ValueRecord, + "DeltaValue": DeltaValue, }