From d3ddd57d34fd0defab64a8a4b459db0d212853bd Mon Sep 17 00:00:00 2001 From: Dan Field Date: Tue, 21 Jan 2020 16:52:23 -0800 Subject: [PATCH] derp --- tools/fuchsia/merge_and_upload_debug_symbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fuchsia/merge_and_upload_debug_symbols.py b/tools/fuchsia/merge_and_upload_debug_symbols.py index 34f16b760a7c2..3bf5d852ca972 100755 --- a/tools/fuchsia/merge_and_upload_debug_symbols.py +++ b/tools/fuchsia/merge_and_upload_debug_symbols.py @@ -64,7 +64,7 @@ def ProcessCIPDPackage(upload, cipd_yaml, engine_version, out_dir, target_arch): # instances. Normally verification takes slightly more than 1 minute when # it succeeds. num_tries = 3 - while tries in range(num_tries): + for tries in range(num_tries): try: subprocess.check_call(command, cwd=_packaging_dir) break