This commit is contained in:
Dave Halter
2018-09-08 17:04:07 +02:00
parent 928e80c9e9
commit eac8cfe63d
+1 -1
View File
@@ -99,7 +99,7 @@ def py__mro__(context):
debug.warning('Super class of %s is not a class: %s', context, cls) debug.warning('Super class of %s is not a class: %s', context, cls)
else: else:
add(cls) add(cls)
for cls_new in py__mro__(context): for cls_new in py__mro__(cls):
add(cls_new) add(cls_new)
return tuple(mro) return tuple(mro)