mirror of https://github.com/swig/swig
Fix incorrect director_classic_runme.py test
Python 3.5 and -builtin threw an error as the incorrect base was being initialized.
This commit is contained in:
parent
ef001de524
commit
3e9854d308
|
@ -69,7 +69,7 @@ class TargetLangOrphanPerson(OrphanPerson):
|
|||
class TargetLangOrphanChild(OrphanChild):
|
||||
|
||||
def __init__(self):
|
||||
Child.__init__(self)
|
||||
OrphanChild.__init__(self)
|
||||
|
||||
def id(self):
|
||||
identifier = "TargetLangOrphanChild"
|
||||
|
|
Loading…
Reference in New Issue