Skip to content

Commit 9b618d3

Browse files
authored
fix: wrong formatting python warning (#546)
1 parent 04e8c16 commit 9b618d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws_encryption_sdk/compatability.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ def _warn_deprecated_python():
3535
"bug fixes, and security updates please upgrade to Python {}.{} or "
3636
"later. For more information, see SUPPORT_POLICY.rst: "
3737
"https://github.com/aws/aws-encryption-sdk-python/blob/master/SUPPORT_POLICY.rst"
38-
).format(py_version[0], py_version[1], minimum_version[0], minimum_version[1], params["date"])
38+
).format(py_version[0], py_version[1], params["date"], minimum_version[0], minimum_version[1])
3939
warnings.warn(warning, DeprecationWarning)

0 commit comments

Comments
 (0)