diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index a32c693f..fdc31778 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -317,7 +317,7 @@ class XmlManifest(object): | |||
317 | @property | 317 | @property |
318 | def projects(self): | 318 | def projects(self): |
319 | self._Load() | 319 | self._Load() |
320 | return self._paths.values() | 320 | return list(self._paths.values()) |
321 | 321 | ||
322 | @property | 322 | @property |
323 | def remotes(self): | 323 | def remotes(self): |
@@ -882,10 +882,8 @@ class XmlManifest(object): | |||
882 | fromProjects = self.paths | 882 | fromProjects = self.paths |
883 | toProjects = manifest.paths | 883 | toProjects = manifest.paths |
884 | 884 | ||
885 | fromKeys = fromProjects.keys() | 885 | fromKeys = sorted(fromProjects.keys()) |
886 | fromKeys.sort() | 886 | toKeys = sorted(toProjects.keys()) |
887 | toKeys = toProjects.keys() | ||
888 | toKeys.sort() | ||
889 | 887 | ||
890 | diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []} | 888 | diff = {'added': [], 'removed': [], 'changed': [], 'unreachable': []} |
891 | 889 | ||