summaryrefslogtreecommitdiffstats
path: root/manifest_loader.py
diff options
context:
space:
mode:
Diffstat (limited to 'manifest_loader.py')
-rw-r--r--manifest_loader.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/manifest_loader.py b/manifest_loader.py
index 1ce1c1f3..467cb42a 100644
--- a/manifest_loader.py
+++ b/manifest_loader.py
@@ -13,11 +13,14 @@
13# See the License for the specific language governing permissions and 13# See the License for the specific language governing permissions and
14# limitations under the License. 14# limitations under the License.
15 15
16from manifest_submodule import SubmoduleManifest
16from manifest_xml import XmlManifest 17from manifest_xml import XmlManifest
17 18
18def ParseManifest(repodir, type=None): 19def ParseManifest(repodir, type=None):
19 if type: 20 if type:
20 return type(repodir) 21 return type(repodir)
22 if SubmoduleManifest.Is(repodir):
23 return SubmoduleManifest(repodir)
21 return XmlManifest(repodir) 24 return XmlManifest(repodir)
22 25
23_manifest = None 26_manifest = None