Skip to content

Commit d367eb4

Browse files
Update info message for closing pr
1 parent 64e7659 commit d367eb4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/commands/download.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _download_exercise(
5454
if old_config.exercise_repo.repo_type == "remote" and old_config.exercise_repo.create_fork:
5555
pr_repo_full_name = old_config.exercise_repo.pr_repo_full_name
5656
if pr_repo_full_name:
57-
info(f"Closing open PRs in {pr_repo_full_name} if exists...")
57+
info(f"Closing any open PRs in {pr_repo_full_name}...")
5858
close_pr(pr_repo_full_name)
5959
rmtree(exercise)
6060

app/commands/progress/reset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def reset() -> None:
5858
if is_remote_type and exercise_config.exercise_repo.create_fork:
5959
pr_repo_full_name = exercise_config.exercise_repo.pr_repo_full_name
6060
if pr_repo_full_name:
61-
info(f"Closing open PRs in {pr_repo_full_name} if exists...")
61+
info(f"Closing any open PRs in {pr_repo_full_name}...")
6262
close_pr(pr_repo_full_name)
6363
exercise_config.exercise_repo.pr_number = None
6464
exercise_config.exercise_repo.pr_repo_full_name = None

0 commit comments

Comments
 (0)