diff options
Diffstat (limited to 'scripts/manifest.py')
-rwxr-xr-x | scripts/manifest.py | 2 |
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) |