diff options
author | Mike Frysinger <vapier@google.com> | 2021-04-20 23:21:29 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-04-21 15:37:16 +0000 |
commit | d41eed0b36013b84586e5da8bf2d00ae0730cf94 (patch) | |
tree | 0c3454acc68a120deabb01aa606b4330c2252911 /subcmds/sync.py | |
parent | d2b086bea92674866ad30db3d579779682eb8cdc (diff) | |
download | git-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>
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 2 |
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 | |||
51 | import gitc_utils | 51 | import gitc_utils |
52 | from project import Project | 52 | from project import Project |
53 | from project import RemoteSpec | 53 | from project import RemoteSpec |
54 | from command import Command, MirrorSafeCommand | 54 | from command import Command, MirrorSafeCommand, WORKER_BATCH_SIZE |
55 | from error import RepoChangedException, GitError, ManifestParseError | 55 | from error import RepoChangedException, GitError, ManifestParseError |
56 | import platform_utils | 56 | import platform_utils |
57 | from project import SyncBuffer | 57 | from project import SyncBuffer |