Skip to content

Commit

Permalink
Missing space when concat the msg lines, sentence too long (#3930)
Browse files Browse the repository at this point in the history
Current:
This node image upgrade operation will run across every node pool in the clusterand might take a while, do you wish to continue

Proposed:
This node image upgrade operation will run across every node pool in the cluster and might take a while. Do you wish to continue
  • Loading branch information
Dejan Gregor authored Sep 30, 2021
1 parent 207b7c5 commit 0277e85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/aks-preview/azext_aks_preview/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -2019,8 +2019,8 @@ def aks_upgrade(cmd, # pylint: disable=unused-argument, too-many-return-state
'If you only want to upgrade the node version please use the "--node-image-only" option only.')

if node_image_only:
msg = "This node image upgrade operation will run across every node pool in the cluster" \
"and might take a while, do you wish to continue?"
msg = "This node image upgrade operation will run across every node pool in the cluster " \
"and might take a while. Do you wish to continue?"
if not yes and not prompt_y_n(msg, default="n"):
return None

Expand Down

0 comments on commit 0277e85

Please sign in to comment.