We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e1d19 commit c87585bCopy full SHA for c87585b
src/azure-cli-core/azure/cli/core/auth/util.py
@@ -45,8 +45,7 @@ def aad_error_handler(error, **kwargs):
45
recommendation = PASSWORD_CERTIFICATE_WARNING
46
else:
47
login_command = _generate_login_command(**kwargs)
48
- recommendation = ("Interactive authentication is needed. "
49
- f"Run the command below; additional arguments may be added as needed:\n{login_command}")
+ recommendation = "Interactive authentication is needed. Please run:\n{}".format(login_command)
50
51
from azure.cli.core.azclierror import AuthenticationError
52
raise AuthenticationError(error_description, msal_error=error, recommendation=recommendation)
0 commit comments