diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 81a6a858..f37732cd 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -446,7 +446,7 @@ class XmlManifest(object): | |||
446 | 446 | ||
447 | local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)) | 447 | local_dir = os.path.abspath(os.path.join(self.repodir, LOCAL_MANIFESTS_DIR_NAME)) |
448 | try: | 448 | try: |
449 | for local_file in sorted(os.listdir(local_dir)): | 449 | for local_file in sorted(platform_utils.listdir(local_dir)): |
450 | if local_file.endswith('.xml'): | 450 | if local_file.endswith('.xml'): |
451 | local = os.path.join(local_dir, local_file) | 451 | local = os.path.join(local_dir, local_file) |
452 | nodes.append(self._ParseManifestXml(local, self.repodir)) | 452 | nodes.append(self._ParseManifestXml(local, self.repodir)) |