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:
William S Fulton 2015-10-10 01:17:32 +01:00
parent ef001de524
commit 3e9854d308
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class TargetLangOrphanPerson(OrphanPerson):
class TargetLangOrphanChild(OrphanChild):
def __init__(self):
Child.__init__(self)
OrphanChild.__init__(self)
def id(self):
identifier = "TargetLangOrphanChild"