summaryrefslogtreecommitdiff
path: root/scripts/manifest.py
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2024-09-11 11:34:35 -0700
committer Colin Cross <ccross@android.com> 2024-09-11 14:22:34 -0700
commit6cb462b38c07507e0fc1518762ac2b579a3ede8c (patch)
treebb742f2f529576715a7de9e1f64d2b8add5cb6cb /scripts/manifest.py
parentaa8ceca851efaf057df5472dc95fe8eb4b0496e8 (diff)
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
Diffstat (limited to 'scripts/manifest.py')
-rwxr-xr-xscripts/manifest.py2
1 files changed, 1 insertions, 1 deletions
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)