Skip to content

Commit 52df123

Browse files
committed
deleted unicode symbols
1 parent 2523462 commit 52df123

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

script/checkout.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ def git_sync_with_retries(max_retries=3, backoff_seconds=5):
3333
subprocess.check_call([sys.executable, "tools/git-sync-deps"], env=env)
3434
else:
3535
subprocess.check_call([sys.executable, "tools/git-sync-deps"])
36-
print("Success")
36+
print("Success")
3737
break
3838
except subprocess.CalledProcessError as e:
3939
attempt += 1
4040
if attempt > max_retries:
41-
print("All {} retries failed. Giving up.".format(max_retries))
41+
print("All {} retries failed. Giving up.".format(max_retries))
4242
raise
4343
else:
4444
wait = backoff_seconds * attempt
45-
print(f"⚠️ Failed (exit {e.returncode}), retrying in {wait}s…")
45+
print(f"Failed (exit {e.returncode}), retrying in {wait}s…")
4646
time.sleep(wait)
4747

4848
def main():

0 commit comments

Comments
 (0)