Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/python/pymongocrypt/mongocrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def _ask_for_kms_credentials(kms_providers):
return
if not _HAVE_AUTH_AWS:
raise RuntimeError(
"MONGODB-AWS authentication requires pymongo-auth-aws: "
"On-demand AWS credentials require pymongo-auth-aws: "
"install with: python -m pip install 'pymongo[aws]'"
Copy link
Member

@ShaneHarvey ShaneHarvey Aug 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"[aws]" -> "[encryption]"?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was asuuming you'd only hit this if using a version of pymongo that didn't include pymongo_aws_auth in the encryption extra.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh good point.

)
creds = _aws_temp_credentials()
Expand Down