scripts: cros_install_debug_syms: Drop quiet=True usage.
quiet has been dropped from cros_build_lib.run. Drop this extremely
indirect usage of run's quiet argument.
BUG=b:187789829
TEST=CQ
Change-Id: Ic0440448f00a17e8d19202e90875a6cf20561e8d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/3854306
Auto-Submit: Alex Klein <saklein@chromium.org>
Commit-Queue: Alex Klein <saklein@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
Tested-by: Alex Klein <saklein@chromium.org>
Reviewed-by: Mike Frysinger <vapier@chromium.org>
diff --git a/scripts/cros_install_debug_syms.py b/scripts/cros_install_debug_syms.py
index 7a3d5a9..5890d92 100644
--- a/scripts/cros_install_debug_syms.py
+++ b/scripts/cros_install_debug_syms.py
@@ -164,7 +164,7 @@
with open(binhost_cache.Lookup(key).path, 'rb') as f:
return pickle.load(f)
- pkgindex = binpkg.GrabRemotePackageIndex(binhost, quiet=True)
+ pkgindex = binpkg.GrabRemotePackageIndex(binhost)
if pkgindex and binhost_cache:
# Only cache remote binhosts as local binhosts can change.
with tempfile.NamedTemporaryFile(delete=False) as temp_file: