commit | a35e4021619eac80ebc162b91f42c919a145bd5b | [log] [tgz] |
---|---|---|
author | Conley Owens <cco3@android.com> | Wed May 07 18:21:30 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed May 07 18:21:31 2014 +0000 |
tree | d660680dc22d219fbd0ad13a82b1ee7518daf607 | |
parent | dd7aea6c11e63749c6b46876ba5c902fd50a65a3 [diff] | |
parent | d58bfe5a58caa670c96b060c4c0d926018588000 [diff] |
Merge "Return a list rather than dict_values in XmlManifest.projects()"
diff --git a/manifest_xml.py b/manifest_xml.py index 23ff12e..a79f714 100644 --- a/manifest_xml.py +++ b/manifest_xml.py
@@ -310,7 +310,7 @@ @property def projects(self): self._Load() - return self._paths.values() + return list(self._paths.values()) @property def remotes(self):