commit | 66214cbe8c220625e61a85f386756c6de4ec82b2 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 02:18:18 2013 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Wed Nov 27 02:18:18 2013 -0500 |
tree | 71540ffd0fdfa2016bbf1faa732e886cda596dd8 | |
parent | adbaa269f595ca72a6ddcfd7dd1c7ced4097526f [diff] [blame] |
2to3 --fix=apply
diff --git a/Lib/fontTools/ttLib/tables/otBase.py b/Lib/fontTools/ttLib/tables/otBase.py index d3f4eb3..523d2c8 100644 --- a/Lib/fontTools/ttLib/tables/otBase.py +++ b/Lib/fontTools/ttLib/tables/otBase.py
@@ -429,7 +429,7 @@ return ref def writeStruct(self, format, values): - data = apply(struct.pack, (format,) + values) + data = struct.pack(*(format,) + values) self.items.append(data) def writeData(self, data):