Преглед изворни кода

Merge "Return a list rather than dict_values in XmlManifest.projects()"

Conley Owens пре 11 година
родитељ
комит
a35e402161
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      manifest_xml.py

+ 1 - 1
manifest_xml.py

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