Skip to content

Commit

Permalink
Minor fix on confirmation message.
Browse files Browse the repository at this point in the history
Change-Id: I740f30125c0b2194aee18cf56604d4aab7f486e4
  • Loading branch information
manjiki committed Jun 23, 2021
1 parent e0dee70 commit 33054d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cumin/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,8 @@ def get_hosts(args, config):
raise cumin.CuminError(message)

for i in range(10):
stderr(('Ok to proceed on {num} hosts? Enter the number of affected hosts to confirm '
'or "q" to quit'.format(num=len(hosts))), end=' ')
stderr(('OK to proceed on {num} hosts? Enter the number of affected hosts to confirm '
'or "q" to quit:'.format(num=len(hosts))), end=' ')
answer = input() # nosec
if not answer:
continue
Expand Down

0 comments on commit 33054d3

Please sign in to comment.