summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index a3e78fe9..31987248 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -312,7 +312,7 @@ class XmlManifest(object):
312 312
313 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)) 313 local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME))
314 try: 314 try:
315 for local_file in os.listdir(local_dir): 315 for local_file in sorted(os.listdir(local_dir)):
316 if local_file.endswith('.xml'): 316 if local_file.endswith('.xml'):
317 try: 317 try:
318 nodes.append(self._ParseManifestXml(local_file, self.repodir)) 318 nodes.append(self._ParseManifestXml(local_file, self.repodir))