From e6c8957d27e55c0ce774b9b3b7198f1c8b56bbbb Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 7 Mar 2014 19:35:41 +0000 Subject: [PATCH] Fix DTOOL_SUPER_BASE111 assertion error with the new building style --- direct/src/showbase/PythonUtil.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/direct/src/showbase/PythonUtil.py b/direct/src/showbase/PythonUtil.py index 38d4df8663..9f18522c2e 100644 --- a/direct/src/showbase/PythonUtil.py +++ b/direct/src/showbase/PythonUtil.py @@ -2459,7 +2459,8 @@ def _getDtoolSuperBase(): from pandac.PandaModules import PandaNode dtoolSuperBase = PandaNode('').__class__.__bases__[0].__bases__[0].__bases__[0] assert repr(dtoolSuperBase) == "" \ - or repr(dtoolSuperBase) == "" + or repr(dtoolSuperBase) == "" \ + or repr(dtoolSuperBase) == "" safeReprNotify = None