Commit 1741471f authored by Weilun Shi's avatar Weilun Shi Committed by Commit Bot

Uncommenting extract_owners in merge_xml

This was accidentally commented in the split xml's cl because we don't
want to extract OWNERS while splitting them.

Change-Id: Ibe3a566d46a64c1a41ae5eb9c7a1eddcd008ca83
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2450733
Commit-Queue: Steven Holte <holte@chromium.org>
Reviewed-by: default avatarSteven Holte <holte@chromium.org>
Auto-Submit: Weilun Shi <sweilun@chromium.org>
Cr-Commit-Position: refs/heads/master@{#813851}
parent 42eec2ac
...@@ -128,8 +128,8 @@ def MakeNodeWithChildren(doc, tag, children): ...@@ -128,8 +128,8 @@ def MakeNodeWithChildren(doc, tag, children):
""" """
node = doc.createElement(tag) node = doc.createElement(tag)
for child in children: for child in children:
# if child.tagName == 'histograms': if child.tagName == 'histograms':
# expand_owners.ExpandHistogramsOWNERS(child) expand_owners.ExpandHistogramsOWNERS(child)
node.appendChild(child) node.appendChild(child)
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