From a23d9bc6fb84a5607f8aff8e3261e999b50c62d6 Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Tue, 8 Dec 2020 10:01:38 +1100 Subject: Rename BaseRepoManager -> RepoManager. (#4800) This was renamed in b0b99d5ccdf5e2e49cfe3138fbcf64e6fef6ea7f --- infra/bisector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'infra/bisector.py') diff --git a/infra/bisector.py b/infra/bisector.py index b1b690d50..dc4a470d5 100644 --- a/infra/bisector.py +++ b/infra/bisector.py @@ -187,7 +187,7 @@ def _bisect(bisect_type, old_commit, new_commit, test_case_path, fuzz_target, host_src_dir = build_specified_commit.copy_src_from_docker( build_data.project_name, tmp_dir) - bisect_repo_manager = repo_manager.BaseRepoManager( + bisect_repo_manager = repo_manager.RepoManager( os.path.join(host_src_dir, os.path.basename(repo_path))) commit_list = bisect_repo_manager.get_commit_list(new_commit, old_commit) @@ -299,7 +299,7 @@ def bisect(bisect_type, old_commit, new_commit, test_case_path, fuzz_target, fuzz_target, build_data) finally: # Clean up projects/ as _bisect may have modified it. - oss_fuzz_repo_manager = repo_manager.BaseRepoManager(helper.OSS_FUZZ_DIR) + oss_fuzz_repo_manager = repo_manager.RepoManager(helper.OSS_FUZZ_DIR) oss_fuzz_repo_manager.git(['reset', 'projects']) oss_fuzz_repo_manager.git(['checkout', 'projects']) oss_fuzz_repo_manager.git(['clean', '-fxd', 'projects']) -- cgit v1.2.3