From 0277e855470c260ce4fb8a2ef34e8c4d4842aa52 Mon Sep 17 00:00:00 2001 From: Dejan Gregor Date: Thu, 30 Sep 2021 11:56:59 +0100 Subject: [PATCH] Missing space when concat the msg lines, sentence too long (#3930) 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 --- src/aks-preview/azext_aks_preview/custom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aks-preview/azext_aks_preview/custom.py b/src/aks-preview/azext_aks_preview/custom.py index 8f746371a09..d5f1c17e10d 100644 --- a/src/aks-preview/azext_aks_preview/custom.py +++ b/src/aks-preview/azext_aks_preview/custom.py @@ -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