From 6cb462b38c07507e0fc1518762ac2b579a3ede8c Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Wed, 11 Sep 2024 11:34:35 -0700 Subject: Fix manifest_fixer.py warnings Fix a few warnings showing up in manifest_*.py Test: manifest_fixer_test.py Test: manifest_check_test.py Flag: EXEMPT refactor Change-Id: I144100d6d4aa7f5dff7eec79b4bd2d9d5da52153 --- scripts/manifest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/manifest.py') diff --git a/scripts/manifest.py b/scripts/manifest.py index 81f9c61a8..8cd53dfc4 100755 --- a/scripts/manifest.py +++ b/scripts/manifest.py @@ -25,7 +25,7 @@ android_ns = 'http://schemas.android.com/apk/res/android' def get_children_with_tag(parent, tag_name): children = [] - for child in parent.childNodes: + for child in parent.childNodes: if child.nodeType == minidom.Node.ELEMENT_NODE and \ child.tagName == tag_name: children.append(child) -- cgit v1.2.3-59-g8ed1b