| Index: grit/tool/android2grd.py
|
| diff --git a/grit/tool/android2grd.py b/grit/tool/android2grd.py
|
| index 333e33d77ee800d4a7853e7421ab7d34c2e5729f..b4c136314bb5eae6ddd999bb58517122041122d5 100644
|
| --- a/grit/tool/android2grd.py
|
| +++ b/grit/tool/android2grd.py
|
| @@ -194,15 +194,15 @@ OPTIONS may be any of the following:
|
| '''<?xml version="1.0" encoding="UTF-8"?>
|
| <grit base_dir="." latest_public_release="0"
|
| current_release="1" source_lang_id="en">
|
| + <outputs />
|
| + <translations />
|
| <release allow_pseudo="false" seq="1">
|
| <messages fallback_to_english="true" />
|
| </release>
|
| - <translations />
|
| - <outputs />
|
| </grit>'''), dir='.')
|
| - messages = root.children[0].children[0]
|
| + outputs = root.children[0]
|
| translations = root.children[1]
|
| - outputs = root.children[2]
|
| + messages = root.children[2].children[0]
|
| assert (isinstance(messages, grit.node.empty.MessagesNode) and
|
| isinstance(translations, grit.node.empty.TranslationsNode) and
|
| isinstance(outputs, grit.node.empty.OutputsNode))
|
|
|