From d41eed0b36013b84586e5da8bf2d00ae0730cf94 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 20 Apr 2021 23:21:29 -0400 Subject: [PATCH] sync: fix missing import for -q 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 Tested-by: Mike Frysinger --- subcmds/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 import gitc_utils from project import Project from project import RemoteSpec -from command import Command, MirrorSafeCommand +from command import Command, MirrorSafeCommand, WORKER_BATCH_SIZE from error import RepoChangedException, GitError, ManifestParseError import platform_utils from project import SyncBuffer