summaryrefslogtreecommitdiff
path: root/scripts/manifest.py
diff options
context:
space:
mode:
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)