diff --git a/Lib/fontTools/ttx.py b/Lib/fontTools/ttx.py index 675f133ef..01ca63984 100644 --- a/Lib/fontTools/ttx.py +++ b/Lib/fontTools/ttx.py @@ -155,6 +155,8 @@ class Options(object): elif option == "-l": self.listTables = True elif option == "-t": + # pad with space if table tag length is less than 4 + value += " " * (4 - len(value)) self.onlyTables.append(value) elif option == "-x": self.skipTables.append(value)