[fix] cognito-idp list_users Filter arg now support spaces (#3317)
This commit is contained in:
parent
cc0bd5213f
commit
7ce1e87477
2 changed files with 8 additions and 1 deletions
|
|
@ -287,7 +287,7 @@ class CognitoIdpResponse(BaseResponse):
|
|||
user_pool_id, limit=limit, pagination_token=token
|
||||
)
|
||||
if filt:
|
||||
name, value = filt.replace('"', "").split("=")
|
||||
name, value = filt.replace('"', "").replace(" ", "").split("=")
|
||||
users = [
|
||||
user
|
||||
for user in users
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue