Commit 3dc2f80a authored by Stefan Behnel's avatar Stefan Behnel

fix compiled compiler run

parent 9831142c
...@@ -1290,7 +1290,7 @@ class DecoratorTransform(ScopeTrackingTransform, SkipDeclarations): ...@@ -1290,7 +1290,7 @@ class DecoratorTransform(ScopeTrackingTransform, SkipDeclarations):
if self._properties is None: if self._properties is None:
self._properties = [] self._properties = []
self._properties.append({}) self._properties.append({})
self.visit_scope(node, 'cclass') super(DecoratorTransform, self).visit_CClassDefNode(node)
self._properties.pop() self._properties.pop()
return node return node
......
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