summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-04-20 23:21:29 -0400
committerMike Frysinger <vapier@google.com>2021-04-21 15:37:16 +0000
commitd41eed0b36013b84586e5da8bf2d00ae0730cf94 (patch)
tree0c3454acc68a120deabb01aa606b4330c2252911
parentd2b086bea92674866ad30db3d579779682eb8cdc (diff)
downloadgit-repo-d41eed0b36013b84586e5da8bf2d00ae0730cf94.tar.gz
sync: fix missing import for -qv2.14.1
Some refactors during review dropped this import when it was reworked, but it's still needed when using the --quiet setting. Change-Id: I6d9302ef5a056e52415ea63f35bad592b9dfa75d Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/303942 Reviewed-by: Raman Tenneti <rtenneti@google.com> Tested-by: Mike Frysinger <vapier@google.com>
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 21bc5e7d..aafec1d2 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -51,7 +51,7 @@ import git_superproject
51import gitc_utils 51import gitc_utils
52from project import Project 52from project import Project
53from project import RemoteSpec 53from project import RemoteSpec
54from command import Command, MirrorSafeCommand 54from command import Command, MirrorSafeCommand, WORKER_BATCH_SIZE
55from error import RepoChangedException, GitError, ManifestParseError 55from error import RepoChangedException, GitError, ManifestParseError
56import platform_utils 56import platform_utils
57from project import SyncBuffer 57from project import SyncBuffer