Skip to content

Commit

Permalink
fix: wrong formatting python warning (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinNT committed Jan 24, 2023
1 parent 04e8c16 commit 9b618d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aws_encryption_sdk/compatability.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ def _warn_deprecated_python():
"bug fixes, and security updates please upgrade to Python {}.{} or "
"later. For more information, see SUPPORT_POLICY.rst: "
"https://github.com/aws/aws-encryption-sdk-python/blob/master/SUPPORT_POLICY.rst"
).format(py_version[0], py_version[1], minimum_version[0], minimum_version[1], params["date"])
).format(py_version[0], py_version[1], params["date"], minimum_version[0], minimum_version[1])
warnings.warn(warning, DeprecationWarning)

0 comments on commit 9b618d3

Please sign in to comment.