mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-01-02 16:14:25 +00:00
Return a list rather than dict_values in XmlManifest.projects()
dict.values() produce dict_values objects rather than list objects. Convert this to a list to maintain functionality with certain functions. Change-Id: Ie76269e19f8d68479a1d7ae03aa965252d759a9e
This commit is contained in:
parent
666d534636
commit
d58bfe5a58
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user