diff options
Diffstat (limited to 'manifest_loader.py')
-rw-r--r-- | manifest_loader.py | 3 |
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 | ||
16 | from manifest_submodule import SubmoduleManifest | ||
16 | from manifest_xml import XmlManifest | 17 | from manifest_xml import XmlManifest |
17 | 18 | ||
18 | def ParseManifest(repodir, type=None): | 19 | def 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 |