summaryrefslogtreecommitdiffstats
path: root/git_superproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_superproject.py')
-rw-r--r--git_superproject.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/git_superproject.py b/git_superproject.py
index f1b4f231..5d8c0d4e 100644
--- a/git_superproject.py
+++ b/git_superproject.py
@@ -22,17 +22,19 @@ Examples:
22 UpdateProjectsResult = superproject.UpdateProjectsRevisionId(projects) 22 UpdateProjectsResult = superproject.UpdateProjectsRevisionId(projects)
23""" 23"""
24 24
25import hashlib
26import functools 25import functools
26import hashlib
27import os 27import os
28import sys 28import sys
29import time 29import time
30from typing import NamedTuple 30from typing import NamedTuple
31 31
32from git_command import git_require, GitCommand 32from git_command import git_require
33from git_command import GitCommand
33from git_config import RepoConfig 34from git_config import RepoConfig
34from git_refs import GitRefs 35from git_refs import GitRefs
35 36
37
36_SUPERPROJECT_GIT_NAME = "superproject.git" 38_SUPERPROJECT_GIT_NAME = "superproject.git"
37_SUPERPROJECT_MANIFEST_NAME = "superproject_override.xml" 39_SUPERPROJECT_MANIFEST_NAME = "superproject_override.xml"
38 40