Commit 0004d6fc authored by Xavier Thompson's avatar Xavier Thompson

Fix excessive indentation in Nodes.CClassDefNode

parent 388897b0
......@@ -5337,9 +5337,9 @@ class CClassDefNode(ClassDefNode):
scope.directives = env.directives
if scope is not None and self.is_cyp_wrapper:
# > correct a cypclass wrapper scope's name
scope.qualified_name = scope.qualifying_scope().qualify_name(self.wrapped_nested_name)
scope.class_name = self.wrapped_nested_name
# > correct a cypclass wrapper scope's name
scope.qualified_name = scope.qualifying_scope().qualify_name(self.wrapped_nested_name)
scope.class_name = self.wrapped_nested_name
if self.doc and Options.docstrings:
scope.doc = embed_position(self.pos, self.doc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment