Skip to content

Commit

Permalink
Cosmetic changes to run_release.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and sethmlarson committed Oct 17, 2024
1 parent 28fc9c9 commit e7249f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ def create_release_object_in_db(db: ReleaseShelf) -> None:
print(
"Go to https://www.python.org/admin/downloads/release/add/ and create a new release"
)
if not ask_question(f"Have you already created a new release for {db['release']}"):
if not ask_question(f"Have you already created a new release for {db['release']}?"):
raise ReleaseException("The Django release object has not been created")


Expand Down Expand Up @@ -929,7 +929,7 @@ def wait_until_all_files_are_in_folder(db: ReleaseShelf) -> None:
windows_tick = "✅" if are_windows_files_there else "❌"
macos_tick = "✅" if are_macos_files_there else "❌"
print(
f"\rWaiting for files: Linux {linux_tick} Windows {windows_tick} Mac {macos_tick}",
f"\rWaiting for files: Linux {linux_tick} Windows {windows_tick} Mac {macos_tick} ",
flush=True,
end="",
)
Expand Down Expand Up @@ -1214,7 +1214,7 @@ def _release_type(release: str) -> str:
parser.add_argument(
"--repository",
dest="repo",
help="Location of the cpython repository",
help="Location of the CPython repository",
required=True,
type=str,
)
Expand Down

0 comments on commit e7249f3

Please sign in to comment.