Skip to content

Commit e85f96f

Browse files
martinzinkfgerlits
andauthored
Update bootstrap/package_manager.py
Co-authored-by: Ferenc Gerlits <fgerlits@users.noreply.github.com>
1 parent c327272 commit e85f96f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap/package_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def _query_yes_no(question: str, no_confirm: bool) -> bool:
2828
print("Running {} with noconfirm".format(question))
2929
return True
3030
while True:
31-
print("{} [y/n]".format(question))
31+
print("{} [y/n]".format(question), end=' ', flush=True)
3232
choice = input().lower()
3333
if choice in valid:
3434
return valid[choice]

0 commit comments

Comments
 (0)