Commit 5ac7940a authored by Xavier Thompson's avatar Xavier Thompson

[tmp] Add hack to process += in same file

parent 60ece8fa
......@@ -2127,6 +2127,8 @@ class _extends(object):
result = {}
for d in self.extends:
_update(result, d)
# Hack: Update with itself to process += in the same file
_update(result, result)
return result
def __getattr__(self, attr):
......
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