Fix error message of CBackend for unsupported nodes
Concatenating __class__
and str
is not supported. Should be str(type(self))
(full type path) or self.__class__.__name__
(just class name)
Edited by Stephan Seitz
Concatenating __class__
and str
is not supported. Should be str(type(self))
(full type path) or self.__class__.__name__
(just class name)