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
diff --git a/manifest_xml.py b/manifest_xml.py
index e2f58e6..6557477 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -310,7 +310,7 @@
   @property
   def projects(self):
     self._Load()
-    return self._paths.values()
+    return list(self._paths.values())
 
   @property
   def remotes(self):