Merge pull request #584 from miguelsousa/svg_init_fix

[SVG] correct __init__ method
This commit is contained in:
Cosimo Lupo 2016-04-21 10:46:49 +01:00
commit d169acd10e

View File

@ -99,7 +99,8 @@ colorRecord_format_0 = """
class table_S_V_G_(DefaultTable.DefaultTable):
def __init__(self, object):
def __init__(self, tag=None):
DefaultTable.DefaultTable.__init__(self, tag)
self.colorPalettes = None
def decompile(self, data, ttFont):