Skip to content

Commit 37c6e50

Browse files
committed
fix missing numbering for ansible-format-automatic-specification
1 parent 10e87ab commit 37c6e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/module_utils/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _cdc_api_request(client, endpoint, saml_params, query_params):
304304

305305
error_code = json_response['errorCode']
306306
if error_code != 0:
307-
http_error_msg = '{} Error: {} for url: {}'.format(
307+
http_error_msg = '{0} Error: {1} for url: {2}'.format(
308308
json_response['statusCode'], json_response['errorMessage'], res.url)
309309
raise HTTPError(http_error_msg, response=res)
310310
return json_response

0 commit comments

Comments
 (0)