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:
Anthony King 2014-05-05 23:30:49 +01:00
parent 666d534636
commit d58bfe5a58

View File

@ -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):