summaryrefslogtreecommitdiffstats
path: root/subcmds/init.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/init.py')
-rw-r--r--subcmds/init.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/subcmds/init.py b/subcmds/init.py
index c5a2c54c..529b212b 100644
--- a/subcmds/init.py
+++ b/subcmds/init.py
@@ -16,11 +16,15 @@ import os
16import sys 16import sys
17 17
18from color import Coloring 18from color import Coloring
19from command import InteractiveCommand, MirrorSafeCommand 19from command import InteractiveCommand
20from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD 20from command import MirrorSafeCommand
21from wrapper import Wrapper
22from error import UpdateManifestError
23from error import RepoUnhandledExceptionError 21from error import RepoUnhandledExceptionError
22from error import UpdateManifestError
23from git_command import git_require
24from git_command import MIN_GIT_VERSION_HARD
25from git_command import MIN_GIT_VERSION_SOFT
26from wrapper import Wrapper
27
24 28
25_REPO_ALLOW_SHALLOW = os.environ.get("REPO_ALLOW_SHALLOW") 29_REPO_ALLOW_SHALLOW = os.environ.get("REPO_ALLOW_SHALLOW")
26 30