mirror of
https://git.codelinaro.org/clo/tools/repo.git
synced 2025-06-01 23:05:07 +08:00
Merge "Return a list rather than dict_values in XmlManifest.projects()"
This commit is contained in:
@ -310,7 +310,7 @@ class XmlManifest(object):
|
||||
@property
|
||||
def projects(self):
|
||||
self._Load()
|
||||
return self._paths.values()
|
||||
return list(self._paths.values())
|
||||
|
||||
@property
|
||||
def remotes(self):
|
||||
|
Reference in New Issue
Block a user