Skip to content

Commit

Permalink
Fix incorrect director_classic_runme.py test
Browse files Browse the repository at this point in the history
Python 3.5 and -builtin threw an error as the incorrect base was being
initialized.
  • Loading branch information
wsfulton committed Oct 10, 2015
1 parent ef001de commit 3e9854d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/test-suite/python/director_classic_runme.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def id(self):
class TargetLangOrphanChild(OrphanChild):

def __init__(self):
Child.__init__(self)
OrphanChild.__init__(self)

def id(self):
identifier = "TargetLangOrphanChild"
Expand Down

0 comments on commit 3e9854d

Please sign in to comment.