diff options
author | Conley Owens <cco3@android.com> | 2014-05-07 18:21:30 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-07 18:21:31 +0000 |
commit | a35e4021619eac80ebc162b91f42c919a145bd5b (patch) | |
tree | d660680dc22d219fbd0ad13a82b1ee7518daf607 | |
parent | dd7aea6c11e63749c6b46876ba5c902fd50a65a3 (diff) | |
parent | d58bfe5a58caa670c96b060c4c0d926018588000 (diff) | |
download | git-repo-a35e4021619eac80ebc162b91f42c919a145bd5b.tar.gz |
Merge "Return a list rather than dict_values in XmlManifest.projects()"
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 23ff12e1..a79f7142 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -310,7 +310,7 @@ class XmlManifest(object): | |||
310 | @property | 310 | @property |
311 | def projects(self): | 311 | def projects(self): |
312 | self._Load() | 312 | self._Load() |
313 | return self._paths.values() | 313 | return list(self._paths.values()) |
314 | 314 | ||
315 | @property | 315 | @property |
316 | def remotes(self): | 316 | def remotes(self): |